1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-03 09:57:46 +01:00
Telegram/Telegraph/TGDialogListRemoteOffset.h

15 lines
491 B
C
Raw Normal View History

2016-02-25 01:03:51 +01:00
#import <Foundation/Foundation.h>
@interface TGDialogListRemoteOffset : NSObject <NSCoding>
@property (nonatomic, readonly) int32_t date;
@property (nonatomic, readonly) int64_t peerId;
@property (nonatomic, readonly) int64_t accessHash;
@property (nonatomic, readonly) int32_t messageId;
- (instancetype)initWithDate:(int32_t)date peerId:(int64_t)peerId accessHash:(int64_t)accessHash messageId:(int32_t)messageId;
- (NSComparisonResult)compare:(TGDialogListRemoteOffset *)other;
@end