elliebot/src/EllieBot/Modules/Games/ChatterBot/_common/Choice.cs
Toastie 8316b03c8c
Fixed some miscellaneous warnings in the build process
And also updated games.yml and creds_example.yml
2024-07-19 15:31:09 +12:00

10 lines
No EOL
212 B
C#

#nullable disable
using System.Text.Json.Serialization;
namespace EllieBot.Modules.Games.Common.ChatterBot;
public class Choice
{
[JsonPropertyName("message")]
public Message Message { get; init; }
}