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