update to layer 71

code formatting
This commit is contained in:
Andrzej Gołaszewski 2017-12-20 12:06:31 +01:00
parent 687eca968a
commit ca3a71e39a
930 changed files with 6690 additions and 11417 deletions

View file

@ -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);
}
}
}