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

24 lines
453 B
C#

using System.IO;
namespace TeleSharp.TL
{
[TLObject(480546647)]
public class TLInputChatPhotoEmpty : TLAbsInputChatPhoto
{
public override int Constructor => 480546647;
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
}
}
}