[IMPROVED] Removed password logic out of MPEntities so that it can be backgrounded without relying on the persistence layer staying up. [IMPROVED] Some workload removed from the main thread.
23 lines
380 B
Objective-C
23 lines
380 B
Objective-C
//
|
|
// MPElementEntity.m
|
|
// MasterPassword-iOS
|
|
//
|
|
// Created by Maarten Billemont on 2013-01-29.
|
|
// Copyright (c) 2013 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import "MPElementEntity.h"
|
|
|
|
@implementation MPElementEntity
|
|
|
|
@dynamic lastUsed;
|
|
@dynamic loginName;
|
|
@dynamic name;
|
|
@dynamic requiresExplicitMigration_;
|
|
@dynamic type_;
|
|
@dynamic uses_;
|
|
@dynamic version_;
|
|
@dynamic user;
|
|
|
|
@end
|