TLSharp/TeleSharp.TL/TL/TLStickerSet.cs

62 lines
1.8 KiB
C#
Raw Normal View History

2016-09-24 15:38:26 +02:00
using System.IO;
2017-04-13 08:38:01 +02:00
2016-09-24 15:38:26 +02:00
namespace TeleSharp.TL
{
2017-04-13 08:38:01 +02:00
[TLObject(-852477119)]
2016-09-24 15:38:26 +02:00
public class TLStickerSet : TLObject
{
2017-04-13 08:38:01 +02:00
public override int Constructor => -852477119;
public int flags { get; set; }
public bool installed { get; set; }
public bool archived { get; set; }
public bool official { get; set; }
public bool masks { get; set; }
public long id { get; set; }
public long access_hash { get; set; }
public string title { get; set; }
public string short_name { get; set; }
public int count { get; set; }
public int hash { get; set; }
public void ComputeFlags()
2016-09-24 15:38:26 +02:00
{
2017-04-13 08:38:01 +02:00
flags = 0;
flags = installed ? flags | 1 : flags & ~1;
flags = archived ? flags | 2 : flags & ~2;
flags = official ? flags | 4 : flags & ~4;
flags = masks ? flags | 8 : flags & ~8;
2016-09-24 15:38:26 +02:00
}
public override void DeserializeBody(BinaryReader br)
{
flags = br.ReadInt32();
2017-04-13 08:38:01 +02:00
installed = (flags & 1) != 0;
archived = (flags & 2) != 0;
official = (flags & 4) != 0;
masks = (flags & 8) != 0;
id = br.ReadInt64();
access_hash = br.ReadInt64();
title = StringUtil.Deserialize(br);
short_name = StringUtil.Deserialize(br);
count = br.ReadInt32();
hash = br.ReadInt32();
2016-09-24 15:38:26 +02:00
}
public override void SerializeBody(BinaryWriter bw)
{
2017-04-13 08:38:01 +02:00
bw.Write(Constructor);
2016-09-24 15:38:26 +02:00
ComputeFlags();
2017-04-13 08:38:01 +02:00
bw.Write(flags);
2016-10-13 19:33:16 +02:00
2016-09-24 15:38:26 +02:00
2017-04-13 08:38:01 +02:00
bw.Write(id);
bw.Write(access_hash);
StringUtil.Serialize(title, bw);
StringUtil.Serialize(short_name, bw);
bw.Write(count);
bw.Write(hash);
2016-09-24 15:38:26 +02:00
}
}
2017-04-13 08:38:01 +02:00
}