mirror of
https://github.com/sochix/TLSharp.git
synced 2026-01-04 07:49:57 +01:00
38 lines
860 B
C#
38 lines
860 B
C#
using System.IO;
|
|
|
|
namespace TeleSharp.TL.Messages
|
|
{
|
|
[TLObject(1158290442)]
|
|
public class TLFoundGifs : TLObject
|
|
{
|
|
public override int Constructor
|
|
{
|
|
get
|
|
{
|
|
return 1158290442;
|
|
}
|
|
}
|
|
|
|
public int NextOffset { get; set; }
|
|
|
|
public TLVector<TLAbsFoundGif> Results { get; set; }
|
|
|
|
public void ComputeFlags()
|
|
{
|
|
}
|
|
|
|
public override void DeserializeBody(BinaryReader br)
|
|
{
|
|
NextOffset = br.ReadInt32();
|
|
Results = (TLVector<TLAbsFoundGif>)ObjectUtils.DeserializeVector<TLAbsFoundGif>(br);
|
|
}
|
|
|
|
public override void SerializeBody(BinaryWriter bw)
|
|
{
|
|
bw.Write(Constructor);
|
|
bw.Write(NextOffset);
|
|
ObjectUtils.SerializeObject(Results, bw);
|
|
}
|
|
}
|
|
}
|