TLSharp/TeleSharp.TL/TL/Updates/TLDifferenceTooLong.cs
2017-09-24 11:49:06 +03:30

33 lines
639 B
C#

using System.IO;
namespace TeleSharp.TL.Updates
{
[TLObject(1258196845)]
public class TLDifferenceTooLong : TLAbsDifference
{
public override int Constructor
{
get
{
return 1258196845;
}
}
public int pts { get; set; }
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
pts = br.ReadInt32();
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
bw.Write(pts);
}
}
}