19 lines
427 B
Objective-C
19 lines
427 B
Objective-C
//
|
|
// ChatroomModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/12/3.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface ChatroomModel : NSObject
|
|
|
|
@property(nonatomic,copy)NSString*createTime;
|
|
//@property(nonatomic,copy)NSString*description ;
|
|
@property(nonatomic,copy)NSString*roomId;
|
|
@property(nonatomic,copy)NSString*roomName;
|
|
@property(nonatomic,copy)NSString*venderId;
|
|
@end
|