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.Core/Models/Search/SearchViewModel.cs

11 lines
296 B

namespace Ombi.Core.Models.Search
{
public class SearchViewModel
{
public int Id { get; set; }
public bool Approved { get; set; }
public bool Requested { get; set; }
public bool Available { get; set; }
public string PlexUrl { get; set; }
}
}