10 lines
No EOL
226 B
C#
10 lines
No EOL
226 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Geekbot.Bot.Commands.Randomness.Dad
|
|
{
|
|
internal class DadJokeResponseDto
|
|
{
|
|
[JsonPropertyName("joke")]
|
|
public string Joke { get; set; }
|
|
}
|
|
} |