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

34 lines
541 B
C#

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