mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
28 lines
642 B
C#
28 lines
642 B
C#
using System.IO;
|
|
|
|
namespace TeleSharp.TL
|
|
{
|
|
[TLObject(2002815875)]
|
|
public class TLKeyboardButtonRow : TLObject
|
|
{
|
|
public override int Constructor => 2002815875;
|
|
|
|
public TLVector<TLAbsKeyboardButton> buttons { get; set; }
|
|
|
|
|
|
public void ComputeFlags()
|
|
{
|
|
}
|
|
|
|
public override void DeserializeBody(BinaryReader br)
|
|
{
|
|
buttons = ObjectUtils.DeserializeVector<TLAbsKeyboardButton>(br);
|
|
}
|
|
|
|
public override void SerializeBody(BinaryWriter bw)
|
|
{
|
|
bw.Write(Constructor);
|
|
ObjectUtils.SerializeObject(buttons, bw);
|
|
}
|
|
}
|
|
} |