21 lines
418 B
Objective-C
21 lines
418 B
Objective-C
//
|
|
// GiGaUser.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/8/15.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import "JSONModel.h"
|
|
|
|
@interface GiGaUser : JSONModel
|
|
|
|
@property(nonatomic,copy) NSString *userId;
|
|
@property(nonatomic,copy) NSString *name;
|
|
@property(nonatomic,copy) NSString *avatar;//头像
|
|
@property(nonatomic,copy) NSString *tel;
|
|
@property(nonatomic,copy) NSString *token;
|
|
|
|
|
|
@end
|