TLSharp/TeleSharp.TL/TL/TLAccountDaysTTL.cs
2017-04-13 13:38:01 +07:00

28 lines
543 B
C#

using System.IO;
namespace TeleSharp.TL
{
[TLObject(-1194283041)]
public class TLAccountDaysTTL : TLObject
{
public override int Constructor => -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);
}
}
}