Files
yinmeng-ios/xplan-ios/Main/Room/View/ActivityContainerView/Model/XPRoomActivityPlayModel.h
2022-10-09 16:36:26 +08:00

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