mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -07:00
Lot's of refactoring
This commit is contained in:
parent
c6865d9dcc
commit
263240c648
36 changed files with 732 additions and 660 deletions
|
@ -6,7 +6,7 @@ namespace Ombi.Store.Entities.Requests
|
|||
{
|
||||
public class BaseRequest : Entity
|
||||
{
|
||||
|
||||
public string Title { get; set; }
|
||||
public bool Approved { get; set; }
|
||||
public DateTime RequestedDate { get; set; }
|
||||
public bool Available { get; set; }
|
||||
|
|
|
@ -8,7 +8,6 @@ namespace Ombi.Store.Entities.Requests
|
|||
{
|
||||
public string ImdbId { get; set; }
|
||||
public string Overview { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string PosterPath { get; set; }
|
||||
public DateTime ReleaseDate { get; set; }
|
||||
public string Status { get; set; }
|
||||
|
|
|
@ -146,7 +146,8 @@ namespace Ombi.Store.Migrations
|
|||
ParentRequestId = table.Column<int>(nullable: false),
|
||||
RequestType = table.Column<int>(nullable: false),
|
||||
RequestedDate = table.Column<DateTime>(nullable: false),
|
||||
RequestedUserId = table.Column<int>(nullable: false)
|
||||
RequestedUserId = table.Column<int>(nullable: false),
|
||||
Title = table.Column<string>(nullable: true)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue