mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
17 lines
376 B
C#
17 lines
376 B
C#
#nullable disable
|
|
using Newtonsoft.Json;
|
|
|
|
namespace NadekoBot.Common;
|
|
|
|
public class CmdStrings
|
|
{
|
|
public string[] Usages { get; }
|
|
public string Description { get; }
|
|
|
|
[JsonConstructor]
|
|
public CmdStrings([JsonProperty("args")] string[] usages, [JsonProperty("desc")] string description)
|
|
{
|
|
Usages = usages;
|
|
Description = description;
|
|
}
|
|
} |