mirror of
https://github.com/sochix/TLSharp.git
synced 2026-04-07 23:45:09 +00:00
update to layer 71
code formatting
This commit is contained in:
parent
687eca968a
commit
ca3a71e39a
930 changed files with 6690 additions and 11417 deletions
|
|
@ -1,10 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using TeleSharp.TL;
|
||||
|
||||
namespace TeleSharp.TL
|
||||
{
|
||||
[TLObject(1080663248)]
|
||||
|
|
@ -19,19 +14,17 @@ namespace TeleSharp.TL
|
|||
}
|
||||
|
||||
public string Currency { get; set; }
|
||||
public long TotalAmount { get; set; }
|
||||
|
||||
public long TotalAmount { get; set; }
|
||||
|
||||
public void ComputeFlags()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public override void DeserializeBody(BinaryReader br)
|
||||
{
|
||||
Currency = StringUtil.Deserialize(br);
|
||||
TotalAmount = br.ReadInt64();
|
||||
|
||||
}
|
||||
|
||||
public override void SerializeBody(BinaryWriter bw)
|
||||
|
|
@ -39,7 +32,6 @@ namespace TeleSharp.TL
|
|||
bw.Write(Constructor);
|
||||
StringUtil.Serialize(Currency, bw);
|
||||
bw.Write(TotalAmount);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue