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

34 lines
548 B
C#

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