TLSharp/TeleSharp.TL/TL/TLInputNotifyAll.cs

29 lines
536 B
C#
Raw Normal View History

2016-09-24 15:38:26 +02:00
using System.IO;
2016-09-24 15:38:26 +02:00
namespace TeleSharp.TL
{
[TLObject(-1540769658)]
2016-09-24 15:38:26 +02:00
public class TLInputNotifyAll : TLAbsInputNotifyPeer
{
public override int Constructor
{
get
{
return -1540769658;
}
}
public void ComputeFlags()
{
}
2016-09-24 15:38:26 +02:00
public override void DeserializeBody(BinaryReader br)
{
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
2016-09-24 15:38:26 +02:00
}
}
}