geekbot/src/Bot/Commands/Randomness/Cat/CatResponseDto.cs

10 lines
No EOL
222 B
C#

using System.Text.Json.Serialization;
namespace Geekbot.Bot.Commands.Randomness.Cat
{
internal class CatResponseDto
{
[JsonPropertyName("file")]
public string File { get; set; }
}
}