sync project paths & namespaces
This commit is contained in:
25
SM64RomManager.ProgressUpdater/Settings.cs
Normal file
25
SM64RomManager.ProgressUpdater/Settings.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SM64RomManager.ProgressUpdater
|
||||
{
|
||||
public class Settings
|
||||
{
|
||||
public string WebDavUri { get; set; } = string.Empty;
|
||||
public string WebDavUsr { get; set; } = string.Empty;
|
||||
public string WebDavPwd { get; set; } = string.Empty;
|
||||
public string ProxyUsr { get; set; } = string.Empty;
|
||||
public string ProxyPwd { get; set; } = string.Empty;
|
||||
public string Version { get; set; } = string.Empty;
|
||||
public bool DiscordUploadEnabled { get; set; } = false;
|
||||
public string DiscordBotToken { get; set; } = default;
|
||||
public ulong DiscordGuildID { get; set; } = default;
|
||||
public ulong DiscordChannelID { get; set; } = default;
|
||||
public string DiscordMsgBaseURL { get; set; } = string.Empty;
|
||||
public string DiscordMsgParamCounter { get; set; } = string.Empty;
|
||||
public string UpcommingVersionsDownloadURL { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user