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/PresetThemeViewModel.cs

10 lines
255 B

namespace Ombi.Models
{
public class PresetThemeViewModel
{
public string FullName { get; set; }
public string DisplayName { get; set; }
public string Version { get; set; }
public string Url { get; set; }
}
}