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