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

37 lines
764 B
C#

using System.IO;
namespace TeleSharp.TL.Account
{
[TLObject(1418342645)]
public class TLRequestGetPassword : TLMethod
{
public override int Constructor
{
get
{
return 1418342645;
}
}
public Account.TLAbsPassword Response { get; set; }
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
}
public override void DeserializeResponse(BinaryReader br)
{
Response = (Account.TLAbsPassword)ObjectUtils.DeserializeObject(br);
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
}
}
}