mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
feat: ✨ Recently Requested on Discover Page (#4387)
This commit is contained in:
parent
26ac75f0c2
commit
44d38fbaae
46 changed files with 3785 additions and 3567 deletions
21
src/Ombi.Core/Models/Requests/RecentlyRequestedModel.cs
Normal file
21
src/Ombi.Core/Models/Requests/RecentlyRequestedModel.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
using Ombi.Store.Entities;
|
||||
using System;
|
||||
|
||||
namespace Ombi.Core.Models.Requests
|
||||
{
|
||||
public class RecentlyRequestedModel
|
||||
{
|
||||
public int RequestId { get; set; }
|
||||
public RequestType Type { get; set; }
|
||||
public string UserId { get; set; }
|
||||
public string Username { get; set; }
|
||||
public bool Available { get; set; }
|
||||
public bool TvPartiallyAvailable { get; set; }
|
||||
public DateTime RequestDate { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string Overview { get; set; }
|
||||
public DateTime ReleaseDate { get; set; }
|
||||
public bool Approved { get; set; }
|
||||
public string MediaId { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue