1
0
mirror of https://github.com/danog/Telegram.git synced 2025-01-22 05:52:06 +01:00
Telegram/Telegraph/TGGroupInvitationInfo.m
2015-10-01 19:19:52 +03:00

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