mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
8 lines
250 B
C#
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; }
|
|
} |