TLSharp/TeleSharp.TL/TL/TLBoolTrue.cs

34 lines
524 B
C#
Raw Normal View History

2016-10-11 15:28:57 +02:00
using System.IO;
namespace TeleSharp.TL
{
[TLObject(-1720552011)]
2016-10-11 15:28:57 +02:00
public class TLBoolTrue : TLAbsBool
{
public override int Constructor
{
get
{
return -1720552011;
}
}
public void ComputeFlags()
{
}
2016-10-11 15:28:57 +02:00
public override void DeserializeBody(BinaryReader br)
{
2016-10-11 15:28:57 +02:00
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
2016-10-11 15:28:57 +02:00
}
}
}