TLSharp/TeleSharp.TL/TL/Photos/TLRequestDeletePhotos.cs
2017-09-24 11:49:06 +03:30

39 lines
960 B
C#

using System.IO;
namespace TeleSharp.TL.Photos
{
[TLObject(-2016444625)]
public class TLRequestDeletePhotos : TLMethod
{
public override int Constructor
{
get
{
return -2016444625;
}
}
public TLVector<TLAbsInputPhoto> id { get; set; }
public TLVector<long> Response { get; set; }
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
id = (TLVector<TLAbsInputPhoto>)ObjectUtils.DeserializeVector<TLAbsInputPhoto>(br);
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
ObjectUtils.SerializeObject(id, bw);
}
public override void deserializeResponse(BinaryReader br)
{
Response = (TLVector<long>)ObjectUtils.DeserializeVector<long>(br);
}
}
}