mirror of
https://github.com/danog/Telegram.git
synced 2025-01-22 05:52:06 +01:00
19 lines
409 B
Objective-C
19 lines
409 B
Objective-C
#import "TGGroupInvitationInfo.h"
|
|
|
|
@implementation TGGroupInvitationInfo
|
|
|
|
- (instancetype)initWithTitle:(NSString *)title alreadyAccepted:(bool)alreadyAccepted left:(bool)left isChannel:(bool)isChannel
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_title = title;
|
|
_alreadyAccepted = alreadyAccepted;
|
|
_left = left;
|
|
_isChannel = isChannel;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|