TLSharp/TeleSharp.TL/TL/TLChannelParticipantsKicked.cs

34 lines
682 B
C#
Raw Normal View History

2016-09-24 17:08:26 +03:30
using System.IO;
2017-12-20 12:06:31 +01:00
2016-09-24 17:08:26 +03:30
namespace TeleSharp.TL
{
2017-12-20 12:06:31 +01:00
[TLObject(-1548400251)]
2016-09-24 17:08:26 +03:30
public class TLChannelParticipantsKicked : TLAbsChannelParticipantsFilter
{
public override int Constructor
{
get
{
2017-12-20 12:06:31 +01:00
return -1548400251;
2016-09-24 17:08:26 +03:30
}
}
2017-12-20 12:06:31 +01:00
public string Q { get; set; }
public void ComputeFlags()
{
}
2016-09-24 17:08:26 +03:30
public override void DeserializeBody(BinaryReader br)
{
2017-12-20 12:06:31 +01:00
Q = StringUtil.Deserialize(br);
2016-09-24 17:08:26 +03:30
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
2017-12-20 12:06:31 +01:00
StringUtil.Serialize(Q, bw);
2016-09-24 17:08:26 +03:30
}
}
}