mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 01:08:26 -04:00
20 lines
441 B
C#
20 lines
441 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NadekoBot.Core.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;
|
|
}
|
|
}
|
|
} |