using System.Collections.Generic; using Newtonsoft.Json; namespace TeleSharp.Generator.Models { internal class TlSchema { [JsonProperty("constructors")] public List Constructors { get; set; } [JsonProperty("methods")] public List Methods { get; set; } } }