TLSharp/TeleSharp.TL/TL/TLSendMessageUploadRoundAction.cs

37 lines
666 B
C#
Raw Normal View History

2016-09-24 15:38:26 +02:00
using System.IO;
namespace TeleSharp.TL
2016-09-24 15:38:26 +02:00
{
[TLObject(608050278)]
public class TLSendMessageUploadRoundAction : TLAbsSendMessageAction
2016-09-24 15:38:26 +02:00
{
public override int Constructor
{
get
{
return 608050278;
2016-09-24 15:38:26 +02:00
}
}
public int progress { get; set; }
2016-09-24 15:38:26 +02:00
public void ComputeFlags()
{
}
2016-09-24 15:38:26 +02:00
public override void DeserializeBody(BinaryReader br)
{
progress = br.ReadInt32();
2016-09-24 15:38:26 +02:00
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
bw.Write(progress);
2016-09-24 15:38:26 +02:00
}
}
}