| 1234567891011121314151617 |
- //
- // UserModel.h
- // LiveSendGift
- //
- // Created by Jonhory on 2016/11/11.
- // Copyright © 2016年 com.wujh. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface LiveUserModel : NSObject
- @property (nonatomic ,copy) NSString * name;
- @property (nonatomic ,copy) NSString * iconUrl;
- @property (nonatomic ,copy) NSString * userId;
- @end
|