ChatObject.h
377 Bytes
//
// ChatObject.h
// IVTMeLiveTwo
//
// Created by XRG on 16/8/28.
// Copyright © 2016年 QLQ. All rights reserved.
//
#import <Realm/Realm.h>
@interface ChatObject : RLMObject
@property (nonatomic,strong) NSString *chatToUserId;
@property (nonatomic,strong) NSString *content;
@property (nonatomic,strong) NSDate *time;
@property (nonatomic) BOOL isMySend;
@end