mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
31 lines
684 B
C#
31 lines
684 B
C#
using System.IO;
|
|
|
|
namespace TeleSharp.TL.Auth
|
|
{
|
|
[TLObject(-661144474)]
|
|
public class TLRequestRequestPasswordRecovery : TLMethod
|
|
{
|
|
public override int Constructor => -661144474;
|
|
|
|
public TLPasswordRecovery 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 = (TLPasswordRecovery) ObjectUtils.DeserializeObject(br);
|
|
}
|
|
}
|
|
} |