12345678910111213141516171819 |
- //
- // AccountModel.h
- // CommerceManage
- //
- // Created by 小花 on 2016/12/27.
- // Copyright © 2016年 vaic. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface AccountModel : NSObject <NSCoding>
- @property (nonatomic, strong) NSString *token;
- //+ (instancetype)AccountStatusWithDict: (NSDictionary *)dict;
- @end
|