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

33 lines
634 B
C#

using System.IO;
namespace TeleSharp.TL
{
[TLObject(-1417756512)]
public class TLEncryptedChatEmpty : TLAbsEncryptedChat
{
public override int Constructor
{
get
{
return -1417756512;
}
}
public int id { get; set; }
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
id = br.ReadInt32();
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
bw.Write(id);
}
}
}