TLSharp/TeleSharp.TL/TL/TLUpdateChatParticipants.cs
Andrzej Gołaszewski ca3a71e39a update to layer 71
code formatting
2017-12-20 12:06:31 +01:00

34 lines
741 B
C#

using System.IO;
namespace TeleSharp.TL
{
[TLObject(125178264)]
public class TLUpdateChatParticipants : TLAbsUpdate
{
public override int Constructor
{
get
{
return 125178264;
}
}
public TLAbsChatParticipants Participants { get; set; }
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
Participants = (TLAbsChatParticipants)ObjectUtils.DeserializeObject(br);
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
ObjectUtils.SerializeObject(Participants, bw);
}
}
}