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

49 lines
888 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.Messages
{
[TLObject(649453030)]
public class TLMessageEditData : TLObject
{
public override int Constructor
{
get
{
return 649453030;
}
}
public int flags {get;set;}
public bool caption {get;set;}
public void ComputeFlags()
{
flags = 0;
flags = caption ? (flags | 1) : (flags & ~1);
}
public override void DeserializeBody(BinaryReader br)
{
flags = br.ReadInt32();
caption = (flags & 1) != 0;
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
ComputeFlags();
bw.Write(flags);
}
}
}