TLSharp/TeleSharp.TL/TL/Account/TLRequestGetPassword.cs
2017-11-09 01:37:23 -08:00

40 lines
767 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 SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
}
public override void deserializeResponse(BinaryReader br)
{
Response = (Account.TLAbsPassword)ObjectUtils.DeserializeObject(br);
}
}
}