mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
!wip started on the request queue
This commit is contained in:
parent
b56b68191f
commit
b1e6fd313b
2 changed files with 33 additions and 0 deletions
14
src/Ombi.Store/Entities/RequestQueue.cs
Normal file
14
src/Ombi.Store/Entities/RequestQueue.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Ombi.Store.Entities
|
||||
{
|
||||
[Table("RequestQueue")]
|
||||
public class RequestQueue : Entity
|
||||
{
|
||||
public int RequestId { get; set; }
|
||||
public RequestType Type { get; set; }
|
||||
public DateTime Dts { get; set; }
|
||||
public DateTime Completed { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue