mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
12 lines
278 B
C#
12 lines
278 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace NadekoBot.Modules.Utility;
|
|
|
|
public sealed class AiCommandParamModel
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public required string Name { get; set; }
|
|
|
|
[JsonPropertyName("desc")]
|
|
public required string Desc { get; set; }
|
|
} |