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

38 lines
733 B
C#

using System.IO;
namespace TeleSharp.TL
{
[TLObject(-1551583367)]
public class TLReceivedNotifyMessage : TLObject
{
public override int Constructor
{
get
{
return -1551583367;
}
}
public int Flags { get; set; }
public int Id { get; set; }
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
Id = br.ReadInt32();
Flags = br.ReadInt32();
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
bw.Write(Id);
bw.Write(Flags);
}
}
}