TLSharp/TeleSharp.TL/TL/Photos/TLRequestDeletePhotos.cs
Andrzej Gołaszewski ca3a71e39a update to layer 71
code formatting
2017-12-20 12:06:31 +01:00

41 lines
962 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 DeserializeResponse(BinaryReader br)
{
Response = (TLVector<long>)ObjectUtils.DeserializeVector<long>(br);
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
ObjectUtils.SerializeObject(Id, bw);
}
}
}