mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
18 lines
480 B
C
18 lines
480 B
C
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
#import "TGMessageHole.h"
|
||
|
|
||
|
typedef enum {
|
||
|
TGVisibleMessageHoleDirectionEarlier,
|
||
|
TGVisibleMessageHoleDirectionLater
|
||
|
} TGVisibleMessageHoleDirection;
|
||
|
|
||
|
@interface TGVisibleMessageHole : NSObject
|
||
|
|
||
|
@property (nonatomic, strong, readonly) TGMessageHole *hole;
|
||
|
@property (nonatomic, readonly) TGVisibleMessageHoleDirection direction;
|
||
|
|
||
|
- (instancetype)initWithHole:(TGMessageHole *)hole direction:(TGVisibleMessageHoleDirection)direction;
|
||
|
|
||
|
@end
|