mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 15:32:37 -07:00
#139 remove dependency and usage of humanize() - should help with cross-platform issues. start using moment.js
This commit is contained in:
parent
c882a41eb1
commit
fb66f5aca8
12 changed files with 890 additions and 24 deletions
|
@ -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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue