mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
34 lines
715 B
C#
34 lines
715 B
C#
using System.IO;
|
|
|
|
namespace TeleSharp.TL
|
|
{
|
|
[TLObject(-1837345356)]
|
|
public class TLInputChatUploadedPhoto : TLAbsInputChatPhoto
|
|
{
|
|
public override int Constructor
|
|
{
|
|
get
|
|
{
|
|
return -1837345356;
|
|
}
|
|
}
|
|
|
|
public TLAbsInputFile File { get; set; }
|
|
|
|
public void ComputeFlags()
|
|
{
|
|
}
|
|
|
|
public override void DeserializeBody(BinaryReader br)
|
|
{
|
|
File = (TLAbsInputFile)ObjectUtils.DeserializeObject(br);
|
|
}
|
|
|
|
public override void SerializeBody(BinaryWriter bw)
|
|
{
|
|
bw.Write(Constructor);
|
|
ObjectUtils.SerializeObject(File, bw);
|
|
}
|
|
}
|
|
}
|