ChatListObject.h
603 Bytes
//
// ChatListObject.h
// IVTMeLiveTwo
//
// Created by XRG on 16/8/28.
// Copyright © 2016年 QLQ. All rights reserved.
//
#import <Realm/Realm.h>
@interface ChatListObject : RLMObject
@property (nonatomic,strong) NSString *chatToUserId;
@property (nonatomic,strong) NSString *chatToUserAvatarUrl;
@property (nonatomic,strong) NSString *chatToUserNickName;
@property (nonatomic,strong) NSString *chatToUserSex;
@property (nonatomic,strong) NSString *chatToUserLevel;
@property (nonatomic,strong) NSString *chatToUserSignature;
@property (nonatomic) NSInteger numberOfMessageNoRead;
@end