mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
12 lines
272 B
C#
12 lines
272 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace West.TelegramBot.ContentStore.Model;
|
|
|
|
public record AnimalImage
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public required string Id { get; set; }
|
|
|
|
[JsonPropertyName("url")]
|
|
public required string Url { get; set; }
|
|
} |