You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi/Models/AboutViewModel.cs

21 lines
870 B

namespace Ombi.Models
{
public class AboutViewModel
{
public string Version { get; set; }
public string Branch { get; set; }
public string FrameworkDescription { get; set; }
public string OsArchitecture { get; set; }
public string OsDescription { get; set; }
public string ProcessArchitecture { get; set; }
public string ApplicationBasePath { get; set; }
public string OmbiDatabaseType { get; set; }
public string ExternalDatabaseType { get; set; }
public string SettingsDatabaseType { get; set; }
public string OmbiConnectionString { get; set; }
public string ExternalConnectionString { get; set; }
public string SettingsConnectionString { get; set; }
public string StoragePath { get; set; }
public bool NotSupported { get; set; }
}
}