TLSharp/TeleSharp.TL/TL/TLInputPhoneCall.cs
2017-09-24 11:49:06 +03:30

36 lines
740 B
C#

using System.IO;
namespace TeleSharp.TL
{
[TLObject(506920429)]
public class TLInputPhoneCall : TLObject
{
public override int Constructor
{
get
{
return 506920429;
}
}
public long id { get; set; }
public long access_hash { get; set; }
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
id = br.ReadInt64();
access_hash = br.ReadInt64();
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
bw.Write(id);
bw.Write(access_hash);
}
}
}