mirror of
https://github.com/sochix/TLSharp.git
synced 2026-04-08 16:05:53 +00:00
24 lines
No EOL
460 B
C#
24 lines
No EOL
460 B
C#
using System.IO;
|
|
|
|
namespace TeleSharp.TL.Contacts
|
|
{
|
|
[TLObject(-1219778094)]
|
|
public class TLContactsNotModified : TLAbsContacts
|
|
{
|
|
public override int Constructor => -1219778094;
|
|
|
|
|
|
public void ComputeFlags()
|
|
{
|
|
}
|
|
|
|
public override void DeserializeBody(BinaryReader br)
|
|
{
|
|
}
|
|
|
|
public override void SerializeBody(BinaryWriter bw)
|
|
{
|
|
bw.Write(Constructor);
|
|
}
|
|
}
|
|
} |