TLSharp/TeleSharp.TL/TL/TLInputStickeredMediaDocument.cs

43 lines
860 B
C#
Raw Normal View History

2016-09-24 17:08:26 +03:30
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(70813275)]
2016-10-13 21:03:16 +03:30
public class TLInputStickeredMediaDocument : TLAbsInputStickeredMedia
2016-09-24 17:08:26 +03:30
{
public override int Constructor
{
get
{
2016-10-13 21:03:16 +03:30
return 70813275;
2016-09-24 17:08:26 +03:30
}
}
public TLAbsInputDocument Id { get; set; }
2016-10-13 21:03:16 +03:30
2016-09-24 17:08:26 +03:30
public void ComputeFlags()
{
}
2016-09-24 17:08:26 +03:30
public override void DeserializeBody(BinaryReader br)
{
Id = (TLAbsInputDocument)ObjectUtils.DeserializeObject(br);
2016-10-13 21:03:16 +03:30
2016-09-24 17:08:26 +03:30
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
ObjectUtils.SerializeObject(Id, bw);
2016-10-13 21:03:16 +03:30
2016-09-24 17:08:26 +03:30
}
}
}