Files

12 lines
272 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 AnimalImage
2022-02-16 17:07:30 +02:00
{
[JsonPropertyName("id")]
public required string Id { get; set; }
[JsonPropertyName("url")]
public required string Url { get; set; }
2022-02-16 17:07:30 +02:00
}