Added Released propety to RequestViewModel. Added Released filter to the Requests page

This commit is contained in:
Chris Lees 2016-04-29 14:46:39 -04:00
parent 21a3830101
commit 1f2e460f6d
4 changed files with 11 additions and 4 deletions

View file

@ -38,7 +38,8 @@ namespace PlexRequests.UI.Models
public string Title { get; set; }
public string PosterPath { get; set; }
public DateTime ReleaseDate { get; set; }
public long ReleaseDateTicks { get; set; }
public bool Released { get; set; }
public long ReleaseDateTicks { get; set; }
public RequestType Type { get; set; }
public string Status { get; set; }
public bool Approved { get; set; }