Started on the queue for requests #483 TV Requests with missing information has been completed

This commit is contained in:
Jamie.Rees 2016-11-09 14:32:23 +00:00
parent 5a5f7f5610
commit 50dec5f530
14 changed files with 276 additions and 71 deletions

View file

@ -25,6 +25,7 @@
// ************************************************************************/
#endregion
using System;
using Dapper.Contrib.Extensions;
namespace PlexRequests.Store.Models
@ -32,13 +33,14 @@ namespace PlexRequests.Store.Models
[Table("RequestQueue")]
public class RequestQueue : Entity
{
public int PrimaryIdentifier { get; set; }
public string PrimaryIdentifier { get; set; }
public RequestType Type { get; set; }
public byte[] Content { get; set; }
public FaultType FaultType { get; set; }
public DateTime? LastRetry { get; set; }
}
public enum FaultType