[REMOVED] Facebook SDK. [ADDED] Social framework integration for Twitter & Facebook. [MOVED] User migration warning state moved into MainVC, out of data model. [UPDATED] Major overhaul of Core Data integration. Multiple contexts and making sure we're on the right thread and the right context even for read access. [FIXED] Some iOS 6 deprecation fixes. [FIXED] Some VC rotation issues.
24 lines
372 B
Objective-C
24 lines
372 B
Objective-C
//
|
|
// MPUserEntity.m
|
|
// MasterPassword-iOS
|
|
//
|
|
// Created by Maarten Billemont on 2013-01-29.
|
|
// Copyright (c) 2013 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import "MPUserEntity.h"
|
|
#import "MPElementEntity.h"
|
|
|
|
|
|
@implementation MPUserEntity
|
|
|
|
@dynamic avatar_;
|
|
@dynamic defaultType_;
|
|
@dynamic keyID;
|
|
@dynamic lastUsed;
|
|
@dynamic name;
|
|
@dynamic saveKey_;
|
|
@dynamic elements;
|
|
|
|
@end
|