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

29 lines
530 B
C#

using System.IO;
namespace TeleSharp.TL.Storage
{
[TLObject(-1373745011)]
public class TLFilePdf : TLAbsFileType
{
public override int Constructor
{
get
{
return -1373745011;
}
}
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
}
}
}