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