YMGreetingSettingModel.h 896 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // YMGreetingSettingModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/24.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMGreetingSettingModel : NSObject
  11. @property (nonatomic, assign) NSInteger create_time;
  12. @property (nonatomic, copy) NSString *file;
  13. @property (nonatomic, assign) NSInteger height;
  14. @property (nonatomic, assign) NSInteger greeting_id;
  15. @property (nonatomic, assign) NSInteger is_default;
  16. @property (nonatomic, assign) NSInteger len;
  17. @property (nonatomic, copy) NSString *name;
  18. @property (nonatomic, assign) NSInteger status;
  19. @property (nonatomic, copy) NSString *title;
  20. @property (nonatomic, assign) NSInteger user_id;
  21. @property (nonatomic, copy) NSString *video_file;
  22. @property (nonatomic, copy) NSString *voice_file;
  23. @property (nonatomic, assign) NSInteger width;
  24. @end
  25. NS_ASSUME_NONNULL_END