LiveUserModel.h 355 B

1234567891011121314151617
  1. //
  2. // UserModel.h
  3. // LiveSendGift
  4. //
  5. // Created by Jonhory on 2016/11/11.
  6. // Copyright © 2016年 com.wujh. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface LiveUserModel : NSObject
  10. @property (nonatomic ,copy) NSString * name;
  11. @property (nonatomic ,copy) NSString * iconUrl;
  12. @property (nonatomic ,copy) NSString * userId;
  13. @end