#139 remove dependency and usage of humanize() - should help with cross-platform issues. start using moment.js

This commit is contained in:
Drewster727 2016-04-05 13:33:06 -05:00
parent c882a41eb1
commit fb66f5aca8
12 changed files with 890 additions and 24 deletions

View file

@ -25,6 +25,7 @@
// ************************************************************************/
#endregion
using PlexRequests.Store;
using System;
namespace PlexRequests.UI.Models
{
@ -36,13 +37,13 @@ namespace PlexRequests.UI.Models
public string Overview { get; set; }
public string Title { get; set; }
public string PosterPath { get; set; }
public string ReleaseDate { get; set; }
public DateTime ReleaseDate { get; set; }
public long ReleaseDateTicks { get; set; }
public RequestType Type { get; set; }
public string Status { get; set; }
public bool Approved { get; set; }
public string[] RequestedUsers { get; set; }
public string RequestedDate { get; set; }
public DateTime RequestedDate { get; set; }
public long RequestedDateTicks { get; set; }
public string ReleaseYear { get; set; }
public bool Available { get; set; }