2020-01-26 03:03:28 +01:00
|
|
|
|
using System.Collections.Generic;
|
2020-04-16 10:55:46 +02:00
|
|
|
|
|
2020-01-26 03:03:28 +01:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
2020-04-16 10:55:46 +02:00
|
|
|
|
namespace TgSharp.Generator.Models
|
2020-01-26 03:03:28 +01:00
|
|
|
|
{
|
2020-04-16 10:55:46 +02:00
|
|
|
|
internal class Constructor
|
2020-01-26 03:03:28 +01:00
|
|
|
|
{
|
|
|
|
|
|
[JsonProperty("id")]
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("predicate")]
|
|
|
|
|
|
public string Predicate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("params")]
|
2020-04-16 10:55:46 +02:00
|
|
|
|
public List<Param> Params { get; set; }
|
2020-01-26 03:03:28 +01:00
|
|
|
|
|
|
|
|
|
|
[JsonProperty("type")]
|
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|