TLSharp/TeleSharp.TL/TL/TLPrivacyKeyChatInvite.cs
Andrzej Gołaszewski ca3a71e39a update to layer 71
code formatting
2017-12-20 12:06:31 +01:00

30 lines
536 B
C#

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