Some more work. Need to stop the form submitting on a request

This commit is contained in:
tidusjar 2016-02-26 17:29:20 +00:00
parent 9a78f790a6
commit 96a3970a53
7 changed files with 106 additions and 8 deletions

View 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
}
}