This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/src/Ellie.Bot.Common/_common/CmdStrings.cs

17 lines
372 B
C#
Raw Normal View History

2023-07-15 22:25:21 +12:00
#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;
}
}