mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-08 14:10:50 -07:00
30 lines
821 B
C#
30 lines
821 B
C#
using System;
|
|
|
|
using Dapper.Contrib.Extensions;
|
|
|
|
namespace RequestPlex.Store
|
|
{
|
|
[Table("Requested")]
|
|
public class RequestedModel : Entity
|
|
{
|
|
// ReSharper disable once IdentifierTypo
|
|
public int Tmdbid { 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 string RequestedStatus { get; set; }
|
|
public string RequestedBy { get; set; }
|
|
public DateTime RequestedDate { get; set; }
|
|
|
|
}
|
|
|
|
public enum RequestType
|
|
{
|
|
Movie,
|
|
TvShow
|
|
}
|
|
}
|