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

34 lines
769 B
C#

using System.IO;
namespace TeleSharp.TL.Account
{
[TLObject(307276766)]
public class TLAuthorizations : TLObject
{
public TLVector<TLAuthorization> Authorizations { get; set; }
public override int Constructor
{
get
{
return 307276766;
}
}
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
Authorizations = (TLVector<TLAuthorization>)ObjectUtils.DeserializeVector<TLAuthorization>(br);
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
ObjectUtils.SerializeObject(Authorizations, bw);
}
}
}