mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-08 06:00:50 -07:00
31 lines
862 B
C#
31 lines
862 B
C#
using System;
|
|
|
|
using Dapper.Contrib.Extensions;
|
|
|
|
namespace PlexRequests.Store
|
|
{
|
|
[Table("Requested")]
|
|
public class RequestedModel : Entity
|
|
{
|
|
// ReSharper disable once IdentifierTypo
|
|
public int ProviderId { get; set; }
|
|
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 RequestType Type { get; set; }
|
|
public string Status { get; set; }
|
|
public bool Approved { get; set; }
|
|
public string RequestedBy { get; set; }
|
|
public DateTime RequestedDate { get; set; }
|
|
public bool Available { get; set; }
|
|
|
|
}
|
|
|
|
public enum RequestType
|
|
{
|
|
Movie,
|
|
TvShow
|
|
}
|
|
}
|