Generator Must Respect MS .NET API guidelines

This commit is contained in:
Afshin Arani 2017-11-09 02:35:15 -08:00 committed by Andres G. Aragoneses
parent 3ba3ea53fd
commit d769dd3c2f
646 changed files with 7213 additions and 7166 deletions

View file

@ -18,7 +18,7 @@ namespace TeleSharp.TL.Account
}
}
public TLVector<TLAuthorization> authorizations { get; set; }
public TLVector<TLAuthorization> Authorizations { get; set; }
public void ComputeFlags()
@ -28,14 +28,14 @@ namespace TeleSharp.TL.Account
public override void DeserializeBody(BinaryReader br)
{
authorizations = (TLVector<TLAuthorization>)ObjectUtils.DeserializeVector<TLAuthorization>(br);
Authorizations = (TLVector<TLAuthorization>)ObjectUtils.DeserializeVector<TLAuthorization>(br);
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
ObjectUtils.SerializeObject(authorizations, bw);
ObjectUtils.SerializeObject(Authorizations, bw);
}
}