12345678910111213141516171819202122232425262728293031 |
- //
- // YMGreetingSettingModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/24.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YMGreetingSettingModel : NSObject
- @property (nonatomic, assign) NSInteger create_time;
- @property (nonatomic, copy) NSString *file;
- @property (nonatomic, assign) NSInteger height;
- @property (nonatomic, assign) NSInteger greeting_id;
- @property (nonatomic, assign) NSInteger is_default;
- @property (nonatomic, assign) NSInteger len;
- @property (nonatomic, copy) NSString *name;
- @property (nonatomic, assign) NSInteger status;
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, assign) NSInteger user_id;
- @property (nonatomic, copy) NSString *video_file;
- @property (nonatomic, copy) NSString *voice_file;
- @property (nonatomic, assign) NSInteger width;
- @end
- NS_ASSUME_NONNULL_END
|