TLSharp/TeleSharp.TL/TL/TLEncryptedChatEmpty.cs
2017-04-13 13:38:01 +07:00

28 lines
551 B
C#

using System.IO;
namespace TeleSharp.TL
{
[TLObject(-1417756512)]
public class TLEncryptedChatEmpty : TLAbsEncryptedChat
{
public override int Constructor => -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);
}
}
}