20 lines
753 B
C#
20 lines
753 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("server-name", "sn", "SERVERNAME", true, "Name of the Discord server")]
|
|
public string ServerName { get; set; } = string.Empty;
|
|
|
|
[Uniform("endpoints", "e", "ENDPOINTS", false, "Path where endpoint JSONs are located. Also accepts codex-deployment JSONs.")]
|
|
public string EndpointsPath { get; set; } = "endpoints";
|
|
|
|
[Uniform("userdata", "u", "USERDATA", false, "Path where user data files will be saved.")]
|
|
public string UserDataPath { get; set; } = "userdata";
|
|
}
|
|
}
|