BGRedPackModel.h 970 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // BGRedPackModel.h
  3. // BuguLive
  4. //
  5. // Created by 志刚杨 on 2021/12/24.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BGRedPackModel :NSObject
  11. @property (nonatomic , copy) NSString * status;
  12. @property (nonatomic , copy) NSString * nick_name;
  13. @property (nonatomic , copy) NSString * head_image;
  14. @property (nonatomic , copy) NSString * id;
  15. @property (nonatomic , copy) NSString * desc_content;
  16. @property (nonatomic , copy) NSString * start_time;
  17. @property (nonatomic , copy) NSString * diamonds_quantity;
  18. @property (nonatomic , copy) NSString * video_id;
  19. @property (nonatomic , copy) NSString * user_id;
  20. @property (nonatomic , copy) NSString * people_quantity;
  21. @property (nonatomic , copy) NSString * create_time;
  22. @end
  23. NS_ASSUME_NONNULL_END