mirror of
https://github.com/sochix/TLSharp.git
synced 2026-04-05 06:26:44 +00:00
31 lines
No EOL
667 B
C#
31 lines
No EOL
667 B
C#
using System.IO;
|
|
|
|
namespace TeleSharp.TL.Messages
|
|
{
|
|
[TLObject(-2066640507)]
|
|
public class TLAffectedMessages : TLObject
|
|
{
|
|
public override int Constructor => -2066640507;
|
|
|
|
public int pts { get; set; }
|
|
public int pts_count { get; set; }
|
|
|
|
|
|
public void ComputeFlags()
|
|
{
|
|
}
|
|
|
|
public override void DeserializeBody(BinaryReader br)
|
|
{
|
|
pts = br.ReadInt32();
|
|
pts_count = br.ReadInt32();
|
|
}
|
|
|
|
public override void SerializeBody(BinaryWriter bw)
|
|
{
|
|
bw.Write(Constructor);
|
|
bw.Write(pts);
|
|
bw.Write(pts_count);
|
|
}
|
|
}
|
|
} |