Exemple #1
0
 public InputChatPhotoConstructor(InputPhoto id, InputPhotoCrop crop)
 {
     this.id   = id;
     this.crop = crop;
 }
Exemple #2
0
 public override void Read(BinaryReader reader)
 {
     this.id   = Tl.Parse <InputPhoto>(reader);
     this.crop = Tl.Parse <InputPhotoCrop>(reader);
 }
Exemple #3
0
 public InputChatUploadedPhotoConstructor(InputFile file, InputPhotoCrop crop)
 {
     this.file = file;
     this.crop = crop;
 }