TLSharp/TeleSharp.TL/TL/TLPrivacyValueAllowAll.cs
2017-09-24 11:49:06 +03:30

29 lines
536 B
C#

using System.IO;
namespace TeleSharp.TL
{
[TLObject(1698855810)]
public class TLPrivacyValueAllowAll : TLAbsPrivacyRule
{
public override int Constructor
{
get
{
return 1698855810;
}
}
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
}
}
}