2023-01-05 02:09:53 +02:00
|
|
|
namespace West.TelegramBot.ContentStore.Model;
|
|
|
|
|
|
2023-05-17 23:36:20 +03:00
|
|
|
public class SomeRandomApiAnimalResponse
|
2023-01-05 02:09:53 +02:00
|
|
|
{
|
|
|
|
|
public string Image { get; set; } = null!;
|
|
|
|
|
public string Fact { get; set; } = null!;
|
|
|
|
|
}
|