TLSharp/TeleSharp.TL/TL/TLUpdateChatParticipantDelete.cs
2020-10-25 21:21:07 +03:00

44 lines
869 B
C#

using System.IO;
namespace TeleSharp.TL
{
[TLObject(1851755554)]
public class TLUpdateChatParticipantDelete : TLAbsUpdate
{
public override int Constructor
{
get
{
return 1851755554;
}
}
public long ChatId { get; set; }
public int UserId { get; set; }
public int Version { get; set; }
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
ChatId = br.ReadInt64();
UserId = br.ReadInt32();
Version = br.ReadInt32();
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
bw.Write(ChatId);
bw.Write(UserId);
bw.Write(Version);
}
}
}