Work on the requests page mostly done.

This commit is contained in:
tidusjar 2016-03-01 14:39:55 +00:00
parent 70362b908f
commit 98d143c9b2
17 changed files with 297 additions and 78 deletions

View file

@ -1,4 +1,6 @@
using Dapper.Contrib.Extensions;
using System;
using Dapper.Contrib.Extensions;
namespace RequestPlex.Store
{
@ -7,6 +9,11 @@ namespace RequestPlex.Store
{
// 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; }
}