123456789101112131415161718192021 |
- //
- // NIMTimestampModel.h
- // NIMKit
- //
- // Created by chris.
- // Copyright (c) 2015年 NetEase. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "NIMCellConfig.h"
- @interface NIMTimestampModel : NSObject
- - (CGFloat)height;
- /**
- * 时间戳
- */
- @property (nonatomic, assign) NSTimeInterval messageTime;
- @end
|