mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
24 lines
469 B
C#
24 lines
469 B
C#
using System.IO;
|
|
|
|
namespace TeleSharp.TL
|
|
{
|
|
[TLObject(-1744710921)]
|
|
public class TLDocumentAttributeHasStickers : TLAbsDocumentAttribute
|
|
{
|
|
public override int Constructor => -1744710921;
|
|
|
|
|
|
public void ComputeFlags()
|
|
{
|
|
}
|
|
|
|
public override void DeserializeBody(BinaryReader br)
|
|
{
|
|
}
|
|
|
|
public override void SerializeBody(BinaryWriter bw)
|
|
{
|
|
bw.Write(Constructor);
|
|
}
|
|
}
|
|
} |