TLSharp/TeleSharp.TL/TL/TLInputReportReasonOther.cs
2016-09-24 17:08:26 +03:30

43 lines
786 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TeleSharp.TL;
namespace TeleSharp.TL
{
[TLObject(-512463606)]
public class TLInputReportReasonOther : TLAbsReportReason
{
public override int Constructor
{
get
{
return -512463606;
}
}
public string text {get;set;}
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
text = StringUtil.Deserialize(br);
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
StringUtil.Serialize(text,bw);
}
}
}