mirror of
https://github.com/sochix/TLSharp.git
synced 2026-04-08 07:55:22 +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,18 @@ using System.Threading.Tasks;
|
|||
using TeleSharp.TL;
|
||||
namespace TeleSharp.TL.Photos
|
||||
{
|
||||
[TLObject(-285902432)]
|
||||
[TLObject(-256159406)]
|
||||
public class TLRequestUpdateProfilePhoto : TLMethod
|
||||
{
|
||||
public override int Constructor
|
||||
{
|
||||
get
|
||||
{
|
||||
return -285902432;
|
||||
return -256159406;
|
||||
}
|
||||
}
|
||||
|
||||
public TLAbsInputPhoto id {get;set;}
|
||||
public TLAbsInputPhotoCrop crop {get;set;}
|
||||
public TLAbsUserProfilePhoto Response{ get; set;}
|
||||
|
||||
|
||||
|
|
@ -31,7 +30,6 @@ namespace TeleSharp.TL.Photos
|
|||
public override void DeserializeBody(BinaryReader br)
|
||||
{
|
||||
id = (TLAbsInputPhoto)ObjectUtils.DeserializeObject(br);
|
||||
crop = (TLAbsInputPhotoCrop)ObjectUtils.DeserializeObject(br);
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -39,7 +37,6 @@ crop = (TLAbsInputPhotoCrop)ObjectUtils.DeserializeObject(br);
|
|||
{
|
||||
bw.Write(Constructor);
|
||||
ObjectUtils.SerializeObject(id,bw);
|
||||
ObjectUtils.SerializeObject(crop,bw);
|
||||
|
||||
}
|
||||
public override void deserializeResponse(BinaryReader br)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue