22 lines
407 B
Objective-C
22 lines
407 B
Objective-C
//
|
|
// MessageGameOrderModel.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/7/10.
|
|
//
|
|
|
|
#import "MessageBaseModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MessageGameOrderModel : MessageBaseModel
|
|
|
|
@property (nonatomic, copy) NSString *title;
|
|
@property (nonatomic, copy) NSString *bgURLPath;
|
|
@property (nonatomic, copy) NSString *logoURLPath;
|
|
@property (nonatomic, assign) NSInteger round;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|