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
13 lines
253 B
C#
13 lines
253 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TeleSharp.Generator.Models
|
|
{
|
|
internal class TlParam
|
|
{
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("type")]
|
|
public string Type { get; set; }
|
|
}
|
|
} |