-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBotSettings.cs
More file actions
21 lines (20 loc) · 833 Bytes
/
Copy pathBotSettings.cs
File metadata and controls
21 lines (20 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System.IO;
namespace DiscordCryptoSidebarBot
{
public class BotSettings
{
public int Delay { get; set; } = 0;
public int UpdateInterval { get; set; } = 30;
public string ApiId { get; set; } = null!;
public string BotToken { get; set; } = null!;
public string? GainRoleName { get; set; } = "gain";
public string? LossRoleName { get; set; } = "loss";
public string? CustomEndpoint { get; set; } = null!;
public string? CustomTicker { get; set; } = null!;
public string? CustomEmoji { get; set; } = null!;
public string? CustomAvatar { get; set; } = null!;
public string? ClusterPath { get; set; } = null!;
public bool? ClusterLeader { get; set; } = null!;
public string? ClusterName { get; set; } = null!;
}
}