forked from EllieBotDevs/elliebot
9 lines
No EOL
194 B
C#
9 lines
No EOL
194 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace EllieBot.Modules.Games.Common.ChatterBot;
|
|
|
|
public class Message
|
|
{
|
|
[JsonPropertyName("content")]
|
|
public string Content { get; init; }
|
|
} |