24 lines
665 B
Objective-C
24 lines
665 B
Objective-C
//
|
|
// MineKanKanRoomInfo.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/11/22.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface MineKanKanRoomInfo : NSObject
|
|
|
|
@property (nonatomic,copy) NSString *createTime;
|
|
@property (nonatomic,copy) NSString *roomId;
|
|
@property (nonatomic,copy) NSString *userId;
|
|
@property (nonatomic,copy) NSString *roomName;
|
|
@property (nonatomic,copy) NSString *roomDesc;
|
|
@property (nonatomic,copy) NSString *roomStatus;
|
|
@property (nonatomic,copy) NSString * popularityValue;
|
|
@property (nonatomic,copy) NSString * curentCameraName;
|
|
@property (nonatomic,copy) NSString * curentCameraId;
|
|
|
|
@end
|