mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 15:56:05 -07:00
Some more work. Need to stop the form submitting on a request
This commit is contained in:
parent
9a78f790a6
commit
96a3970a53
7 changed files with 106 additions and 8 deletions
18
RequestPlex.Store/RequestedModel.cs
Normal file
18
RequestPlex.Store/RequestedModel.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue