This commit is contained in:
Afshin Arani 2016-10-13 21:03:16 +03:30
parent 0752c60082
commit 23e647e81c
81 changed files with 2631 additions and 213 deletions

View file

@ -7,19 +7,18 @@ using System.Threading.Tasks;
using TeleSharp.TL;
namespace TeleSharp.TL
{
[TLObject(-1293828344)]
[TLObject(-1991004873)]
public class TLInputChatPhoto : TLAbsInputChatPhoto
{
public override int Constructor
{
get
{
return -1293828344;
return -1991004873;
}
}
public TLAbsInputPhoto id {get;set;}
public TLAbsInputPhotoCrop crop {get;set;}
public void ComputeFlags()
@ -30,7 +29,6 @@ namespace TeleSharp.TL
public override void DeserializeBody(BinaryReader br)
{
id = (TLAbsInputPhoto)ObjectUtils.DeserializeObject(br);
crop = (TLAbsInputPhotoCrop)ObjectUtils.DeserializeObject(br);
}
@ -38,7 +36,6 @@ crop = (TLAbsInputPhotoCrop)ObjectUtils.DeserializeObject(br);
{
bw.Write(Constructor);
ObjectUtils.SerializeObject(id,bw);
ObjectUtils.SerializeObject(crop,bw);
}
}