VoiceLianmaiUserModel.h 513 B

123456789101112131415161718192021
  1. //
  2. // VoiceLianmaiUserModel.h
  3. // BuguLive
  4. //
  5. // Created by 志刚杨 on 2022/10/13.
  6. // Copyright © 2022 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface VoiceLianmaiUserModel : NSObject
  11. @property(nonatomic, strong) NSString *head_image;
  12. @property(nonatomic, assign) int is_open_wheat;
  13. @property(nonatomic, strong) NSString *nick_name;
  14. @property(nonatomic, strong) NSString *user_id;
  15. @property(nonatomic, strong) NSString *coin;
  16. @end
  17. NS_ASSUME_NONNULL_END