-
Notifications
You must be signed in to change notification settings - Fork 4
/
Settings.cs
49 lines (47 loc) · 1.62 KB
/
Settings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Linq;
using System.Text;
namespace modsync
{
/* FTP link
*
* These are overwritten from the file modsyncftp.xml that can be put in the Minecraft folder.
* The file is not required if all settings are set here, or supplied as command line argument
* in the format:
* ftp://user:pass@server:port/folder
*/
public class FtpSettings
{
public string FtpUserName = "";
public string FtpPassword = "";
public string FtpServerAddress = "";
public string FtpServerPort = "";
public string FtpServerFolder = "";
}
/* Settings
*
* These are overwritten from the file modsync.xml that can be put in the FtpServerFolder.
* The file is not required if all settings are set here.
* Leaving any of the settings empty disables the corresponding check.
*/
public class Settings
{
public string ToolVersion = "";
public string ToolDownloadFile = "";
public string JavaVersion = "";
public string JavaArchitecture = "";
public string JavaDownloadFile = "";
public string JavaArguments = "";
public string MinecraftVersion = "";
public string MinecraftDownloadFile = "";
public string MinecraftMode = "";
public string ForgeVersion = "";
public string ForgeDownloadFile = "";
public string FabricVersion = "";
public string FabricDownloadFile = "";
public string SyncFolders = "";
public string SyncAllowUpload = "";
public string ServerName = "";
public string ServerAddress = "";
}
}