| 1234567891011121314151617181920212223 |
- //
- // MOVersionModel.h
- // MiMoLive
- //
- // Created by MiMo on 2025/9/19.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOVersionModel : NSObject
- @property (nonatomic, assign) NSInteger code;
- @property (nonatomic, copy) NSString *url;
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, assign) NSInteger type;
- @property (nonatomic, copy) NSString *desc;
- @property (nonatomic, copy) NSString *text;
- @end
- NS_ASSUME_NONNULL_END
|