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

34 lines
535 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);
}
}
}