2
0
mirror of synced 2025-02-13 17:06:30 +00:00
2023-10-18 11:01:24 +02:00

14 lines
398 B
C#

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";
}
}