TLSharp/src/TgSharp.Generator/Models/Constructor.cs
Andres G. Aragoneses 8c3ddeb1b2 Rename TeleSharp.Generator->TgSharp.Generator
For consistency.
2020-09-11 17:14:19 +08:00

21 lines
448 B
C#

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