24 lines
569 B
Objective-C
24 lines
569 B
Objective-C
//
|
|
// MewMainHomeMoreGameModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by duoban on 2023/12/25.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MewMainHomeMoreGameModel : NSObject
|
|
@property(nonatomic,assign) BOOL isShow;
|
|
@property(nonatomic,copy) NSString *mgId;
|
|
@property(nonatomic,copy) NSString *mgIdStr;
|
|
@property(nonatomic,copy) NSString *micNum;
|
|
@property(nonatomic,copy) NSString *name;
|
|
@property(nonatomic,copy) NSString *pic;
|
|
@property(nonatomic,copy) NSString *remark;
|
|
@property(nonatomic,assign) NSString *seq;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|