Files
yinmeng-ios/xplan-ios/Main/Room/View/Setting/Model/RoomClassifyModel.h

28 lines
493 B
Objective-C

//
// RoomClassifyModel.h
// xplan-ios
//
// Created by GreenLand on 2022/7/15.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface RoomClassifyModel : NSObject
///tag的id
@property (nonatomic,copy) NSString *cid;
///名字
@property (nonatomic, copy) NSString *sortName;
///描述
@property (nonatomic, copy) NSString *sortDesc;
@property (nonatomic, assign) NSInteger seq;
///是否选择
@property (nonatomic,assign) BOOL isSelect;
@end
NS_ASSUME_NONNULL_END