22 lines
381 B
Objective-C
22 lines
381 B
Objective-C
//
|
|
// QXRoomSeatTimeModel.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2026/1/6.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXRoomSeatTimeModel : NSObject
|
|
/// 时间
|
|
@property (nonatomic,strong)NSString *time;
|
|
/// 时间字符串
|
|
@property (nonatomic,strong)NSString *time_str;
|
|
|
|
@property (nonatomic,assign)BOOL isSelected;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|