using System.Collections.Generic; using Newtonsoft.Json; namespace TeleSharp.Generator.Models { internal class TlConstructor { [JsonProperty("id")] public int Id { get; set; } [JsonProperty("predicate")] public string Predicate { get; set; } [JsonProperty("params")] public List Params { get; set; } [JsonProperty("type")] public string Type { get; set; } } }