TLSharp/TeleSharp.TL/TL/Help/TLRequestGetCdnConfig.cs

36 lines
741 B
C#
Raw Normal View History

2016-09-24 15:38:26 +02:00
using System.IO;
2016-09-24 15:38:26 +02:00
namespace TeleSharp.TL.Help
{
[TLObject(1375900482)]
public class TLRequestGetCdnConfig : TLMethod
2016-09-24 15:38:26 +02:00
{
public override int Constructor
{
get
{
return 1375900482;
2016-09-24 15:38:26 +02:00
}
}
public TLCdnConfig Response { get; set; }
2016-09-24 15:38:26 +02:00
public void ComputeFlags()
{
}
2016-09-24 15:38:26 +02:00
public override void DeserializeBody(BinaryReader br)
{
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
}
public override void deserializeResponse(BinaryReader br)
{
Response = (TLCdnConfig)ObjectUtils.DeserializeObject(br);
2016-09-24 15:38:26 +02:00
}
}
}