mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
18 lines
371 B
C#
18 lines
371 B
C#
using Dapper.Contrib.Extensions;
|
|
|
|
namespace RequestPlex.Store
|
|
{
|
|
[Table("Requested")]
|
|
public class RequestedModel : Entity
|
|
{
|
|
// ReSharper disable once IdentifierTypo
|
|
public int Tmdbid { get; set; }
|
|
public RequestType Type { get; set; }
|
|
}
|
|
|
|
public enum RequestType
|
|
{
|
|
Movie,
|
|
TvShow
|
|
}
|
|
}
|