12345678910111213141516171819202122232425 |
- //
- // FKUserFindAuthority.h
- // FirstLink
- //
- // Created by Lofty on 16/10/20.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKUserFindAuthority : NSObject<NSCoding>
- @property (nonatomic, strong) NSNumber *type;
- @property (nonatomic, strong) id value;
- - (BOOL)isNeedShowDiscoverView;
- + (void)saveData:(FKUserFindAuthority *)authority;
- + (FKUserFindAuthority *)analysisData;
- - (BOOL)isEqualToObject:(id)object;
- @end
|