mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-05 23:52:00 +01:00
40 lines
739 B
Plaintext
40 lines
739 B
Plaintext
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TeleSharp.TL;
|
|
namespace /* NAMESPACE */
|
|
{
|
|
[TLObject(/*Constructor*/)]
|
|
public class /* NAME */ : /* PARENT */
|
|
{
|
|
public override int Constructor
|
|
{
|
|
get
|
|
{
|
|
return /*Constructor*/;
|
|
}
|
|
}
|
|
|
|
/* PARAMS */
|
|
|
|
public void ComputeFlags()
|
|
{
|
|
/* COMPUTE */
|
|
}
|
|
|
|
public override void DeserializeBody(BinaryReader br)
|
|
{
|
|
/* DESERIALIZE */
|
|
}
|
|
|
|
public override void SerializeBody(BinaryWriter bw)
|
|
{
|
|
bw.Write(Constructor);
|
|
/* SERIALIZE */
|
|
}
|
|
}
|
|
}
|