TLSharp/TeleSharp.TL/TL/TLInputNotifyAll.cs
2017-11-09 01:37:23 -08:00

34 lines
541 B
C#

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