Add Denied and DeniedReason on the SearchViewModel

This commit is contained in:
Namaneo 2020-01-12 00:31:33 +01:00
commit f8fcc9bea9
2 changed files with 8 additions and 0 deletions

View file

@ -7,6 +7,8 @@ namespace Ombi.Core.Models.Search
{
public int Id { get; set; }
public bool Approved { get; set; }
public bool? Denied { get; set; }
public string DeniedReason { get; set; }
public bool Requested { get; set; }
public int RequestId { get; set; }
public bool Available { get; set; }