mirror of
https://github.com/sochix/TLSharp.git
synced 2026-04-05 14:37:04 +00:00
Generator Must Respect MS .NET API guidelines
This commit is contained in:
parent
3ba3ea53fd
commit
d769dd3c2f
646 changed files with 7213 additions and 7166 deletions
|
|
@ -18,8 +18,8 @@ namespace TeleSharp.TL
|
|||
}
|
||||
}
|
||||
|
||||
public int user_id { get; set; }
|
||||
public int date { get; set; }
|
||||
public int UserId { get; set; }
|
||||
public int Date { get; set; }
|
||||
|
||||
|
||||
public void ComputeFlags()
|
||||
|
|
@ -29,16 +29,16 @@ namespace TeleSharp.TL
|
|||
|
||||
public override void DeserializeBody(BinaryReader br)
|
||||
{
|
||||
user_id = br.ReadInt32();
|
||||
date = br.ReadInt32();
|
||||
UserId = br.ReadInt32();
|
||||
Date = br.ReadInt32();
|
||||
|
||||
}
|
||||
|
||||
public override void SerializeBody(BinaryWriter bw)
|
||||
{
|
||||
bw.Write(Constructor);
|
||||
bw.Write(user_id);
|
||||
bw.Write(date);
|
||||
bw.Write(UserId);
|
||||
bw.Write(Date);
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue