cs-codex-dist-tests/Tools/BiblioTech/Configuration.cs

14 lines
398 B
C#
Raw Normal View History

2023-10-18 09:01:24 +00:00
using ArgsUniform;
namespace BiblioTech
{
public class Configuration
{
[Uniform("token", "t", "TOKEN", true, "Discord Application Token")]
public string ApplicationToken { get; set; } = string.Empty;
[Uniform("deploys", "d", "DEPLOYS", false, "Path where deployment JSONs are located.")]
public string DeploymentsPath { get; set; } = "deploys";
}
}