TLSharp/TeleSharp.TL/TL/TLPopularContact.cs
Andrzej Gołaszewski ca3a71e39a update to layer 71
code formatting
2017-12-20 12:06:31 +01:00

38 lines
755 B
C#

using System.IO;
namespace TeleSharp.TL
{
[TLObject(1558266229)]
public class TLPopularContact : TLObject
{
public long ClientId { get; set; }
public override int Constructor
{
get
{
return 1558266229;
}
}
public int Importers { get; set; }
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
ClientId = br.ReadInt64();
Importers = br.ReadInt32();
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
bw.Write(ClientId);
bw.Write(Importers);
}
}
}