mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-12 08:16:05 -07:00
Started on the queue for requests #483 TV Requests with missing information has been completed
This commit is contained in:
parent
5a5f7f5610
commit
50dec5f530
14 changed files with 276 additions and 71 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue