Files
nadekobot/src/NadekoBot/Modules/Utility/Ai/NadekoCommandCallModel.cs
Kwoth ab93380d7c 5.1
2024-06-13 18:54:21 +00:00

8 lines
250 B
C#

namespace NadekoBot.Modules.Utility;
public sealed class NadekoCommandCallModel
{
public required string Name { get; set; }
public required IReadOnlyList<string> Arguments { get; set; }
public required string Remaining { get; set; }
}