Quasar/Server/Core/Misc/SavedVariables.cs

42 lines
1.1 KiB
C#
Raw Normal View History

2015-01-27 22:47:13 +00:00
namespace xServer.Core.Misc
{
2015-05-29 08:27:18 +00:00
public static class Update
2015-01-27 22:47:13 +00:00
{
public static bool UseDownload { get; set; }
public static string UploadPath { get; set; }
2015-01-27 22:47:13 +00:00
public static string DownloadURL { get; set; }
}
2015-05-29 08:27:18 +00:00
public static class VisitWebsite
2015-01-27 22:47:13 +00:00
{
public static string URL { get; set; }
public static bool Hidden { get; set; }
}
2015-05-29 08:27:18 +00:00
public static class DownloadAndExecute
2015-01-27 22:47:13 +00:00
{
public static string URL { get; set; }
public static bool RunHidden { get; set; }
}
2015-05-29 08:27:18 +00:00
public static class UploadAndExecute
2015-01-27 22:47:13 +00:00
{
2015-04-06 08:06:33 +00:00
public static string FilePath { get; set; }
2015-01-27 22:47:13 +00:00
public static bool RunHidden { get; set; }
}
2015-03-08 17:13:13 +00:00
2015-05-29 08:27:18 +00:00
public static class AutostartItem
2015-03-08 17:13:13 +00:00
{
public static string Name { get; set; }
public static string Path { get; set; }
public static int Type { get; set; }
}
2015-05-28 22:25:40 +00:00
2015-05-29 08:27:18 +00:00
public static class MessageBoxData
2015-05-28 22:25:40 +00:00
{
public static string Caption { get; set; }
public static string Text { get; set; }
public static string Button { get; set; }
public static string Icon { get; set; }
}
}