Files

13 lines
358 B
C#
Raw Permalink Normal View History

2022-01-21 14:18:56 +02:00
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
namespace West.TelegramBot.ChatQuotes.Model.Quote;
[JsonObject(NamingStrategyType = typeof(CamelCaseNamingStrategy))]
public class Result
{
2022-01-22 17:21:29 +03:00
public string Image { get; set; } = "";
2022-01-21 14:18:56 +02:00
public Type Type { get; set; }
public long Width { get; set; }
public long Height { get; set; }
}