forked from EllieBotDevs/elliebot
17 lines
372 B
C#
17 lines
372 B
C#
|
#nullable disable
|
|||
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace Ellie.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;
|
|||
|
}
|
|||
|
}
|