mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
21 lines
483 B
C#
21 lines
483 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace West.TelegramBot.ContentStore.Model;
|
|
|
|
public record OBoobsItem
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonPropertyName("rank")]
|
|
public int Rank { get; set; }
|
|
|
|
[JsonPropertyName("author")]
|
|
public string? Author { get; set; }
|
|
|
|
[JsonPropertyName("model")]
|
|
public string? Model { get; set; }
|
|
|
|
[JsonPropertyName("rank")]
|
|
public string Preview { get; set; } = string.Empty;
|
|
} |