14 lines
257 B
Objective-C
14 lines
257 B
Objective-C
//
|
|
// MyChatRoomModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/12/1.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface MyChatRoomModel : NSObject
|
|
@property(nonatomic,copy)NSString*chatRoomNameLabel;
|
|
@end
|