25 lines
613 B
Objective-C
25 lines
613 B
Objective-C
//
|
|
// XPMineFootPrintModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/7/26.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMineFootPrintModel : NSObject
|
|
|
|
@property (nonatomic, copy) NSString *roomUid;//房间uid
|
|
@property (nonatomic, copy) NSString *roomId;//房间id
|
|
@property (nonatomic, copy) NSString *title;//房间名称
|
|
@property (nonatomic, copy) NSString *avatar;//房间头像
|
|
@property (nonatomic, assign) BOOL valid;//开房状态
|
|
@property (nonatomic, assign) long long erbanNo;
|
|
@property (nonatomic, assign) long long updateTime;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|