Quasar/Server/Core/Misc/SavedVariables.cs

42 lines
1.1 KiB
C#
Raw Normal View History

2015-01-27 14:47:13 -08:00
namespace xServer.Core.Misc
{
2015-05-29 01:27:18 -07:00
public static class Update
2015-01-27 14:47:13 -08:00
{
public static bool UseDownload { get; set; }
public static string UploadPath { get; set; }
2015-01-27 14:47:13 -08:00
public static string DownloadURL { get; set; }
}
2015-05-29 01:27:18 -07:00
public static class VisitWebsite
2015-01-27 14:47:13 -08:00
{
public static string URL { get; set; }
public static bool Hidden { get; set; }
}
2015-05-29 01:27:18 -07:00
public static class DownloadAndExecute
2015-01-27 14:47:13 -08:00
{
public static string URL { get; set; }
public static bool RunHidden { get; set; }
}
2015-05-29 01:27:18 -07:00
public static class UploadAndExecute
2015-01-27 14:47:13 -08:00
{
2015-04-06 01:06:33 -07:00
public static string FilePath { get; set; }
2015-01-27 14:47:13 -08:00
public static bool RunHidden { get; set; }
}
2015-03-08 10:13:13 -07:00
2015-05-29 01:27:18 -07:00
public static class AutostartItem
2015-03-08 10:13:13 -07:00
{
public static string Name { get; set; }
public static string Path { get; set; }
public static int Type { get; set; }
}
2015-05-28 15:25:40 -07:00
2015-05-29 01:27:18 -07:00
public static class MessageBoxData
2015-05-28 15:25:40 -07: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; }
}
}