28 lines
528 B
Objective-C
28 lines
528 B
Objective-C
//
|
|
// XPRoomActivityPlayModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/9/30.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
typedef NS_ENUM(NSUInteger, RoomActivityPlayType) {
|
|
RoomActivityPlayTypeSailing,//航海
|
|
RoomActivityPlayTypeCandyTree,//糖果树
|
|
};
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomActivityPlayModel : NSObject
|
|
|
|
@property (nonatomic, copy) NSString *name;
|
|
|
|
@property (nonatomic, copy) NSString *imageName;
|
|
|
|
@property (nonatomic, assign) RoomActivityPlayType playType;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|