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

33 lines
625 B
C#

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