Files

21 lines
483 B
C#
Raw Permalink Normal View History

using System.Text.Json.Serialization;
2022-02-16 17:07:30 +02:00
namespace West.TelegramBot.ContentStore.Model;
public record OBoobsItem
2022-02-16 17:07:30 +02:00
{
[JsonPropertyName("id")]
2022-02-16 17:07:30 +02:00
public int Id { get; set; }
[JsonPropertyName("rank")]
2022-02-16 17:07:30 +02:00
public int Rank { get; set; }
[JsonPropertyName("author")]
2022-02-16 17:07:30 +02:00
public string? Author { get; set; }
[JsonPropertyName("model")]
2022-02-16 17:07:30 +02:00
public string? Model { get; set; }
[JsonPropertyName("rank")]
2022-02-16 17:07:30 +02:00
public string Preview { get; set; } = string.Empty;
}