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

37 lines
630 B
C#

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