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

28 lines
532 B
C#

using System.IO;
namespace TeleSharp.TL
{
[TLObject(590459437)]
public class TLPhotoEmpty : TLAbsPhoto
{
public override int Constructor => 590459437;
public long id { get; set; }
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
id = br.ReadInt64();
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
bw.Write(id);
}
}
}