mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
14 lines
331 B
C#
14 lines
331 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace TeleSharp.Generator.Models
|
|||
|
|
{
|
|||
|
|
internal class TlSchema
|
|||
|
|
{
|
|||
|
|
[JsonProperty("constructors")]
|
|||
|
|
public List<TlConstructor> Constructors { get; set; }
|
|||
|
|
|
|||
|
|
[JsonProperty("methods")]
|
|||
|
|
public List<TlMethod> Methods { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|