mirror of
https://github.com/sochix/TLSharp.git
synced 2026-04-07 15:36:23 +00:00
Layer-57
This commit is contained in:
parent
0752c60082
commit
23e647e81c
81 changed files with 2631 additions and 213 deletions
|
|
@ -7,19 +7,20 @@ using System.Threading.Tasks;
|
|||
using TeleSharp.TL;
|
||||
namespace TeleSharp.TL
|
||||
{
|
||||
[TLObject(1313188841)]
|
||||
[TLObject(1125058340)]
|
||||
public class TLInputDocumentFileLocation : TLAbsInputFileLocation
|
||||
{
|
||||
public override int Constructor
|
||||
{
|
||||
get
|
||||
{
|
||||
return 1313188841;
|
||||
return 1125058340;
|
||||
}
|
||||
}
|
||||
|
||||
public long id {get;set;}
|
||||
public long access_hash {get;set;}
|
||||
public int version {get;set;}
|
||||
|
||||
|
||||
public void ComputeFlags()
|
||||
|
|
@ -31,6 +32,7 @@ namespace TeleSharp.TL
|
|||
{
|
||||
id = br.ReadInt64();
|
||||
access_hash = br.ReadInt64();
|
||||
version = br.ReadInt32();
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -39,6 +41,7 @@ access_hash = br.ReadInt64();
|
|||
bw.Write(Constructor);
|
||||
bw.Write(id);
|
||||
bw.Write(access_hash);
|
||||
bw.Write(version);
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue