Quasar/Server/Core/Misc/SavedVariables.cs

33 lines
746 B
C#
Raw Normal View History

2015-01-27 22:47:13 +00:00
namespace xServer.Core.Misc
{
public class Update
{
public static string DownloadURL { get; set; }
}
public class VisitWebsite
{
public static string URL { get; set; }
public static bool Hidden { get; set; }
}
public class DownloadAndExecute
{
public static string URL { get; set; }
public static bool RunHidden { get; set; }
}
public class UploadAndExecute
{
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
public class AutostartItem
{
public static string Name { get; set; }
public static string Path { get; set; }
public static int Type { get; set; }
}
2015-01-27 22:47:13 +00:00
}