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