mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
Fix naming for models properties (Use JsonProperty instead) Move models to separate folder Rename models Remove unused references in Program.cs Use string instead of String
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; }
|
|
}
|
|
} |