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

14 lines
476 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 bool NotSupported { get; set; }
}
}