10 lines
No EOL
222 B
C#
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; }
|
|
}
|
|
} |