fixed show grid, added details page

This commit is contained in:
kay.one 2010-09-24 00:14:42 -07:00
parent 772452aa8b
commit 4d4a8198eb
15 changed files with 153 additions and 117 deletions

View file

@ -1,10 +1,12 @@
using System;
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository
{
public class Series
{
public int Id
[SubSonicPrimaryKey]
public int TvdbId
{
get;
set;
@ -22,6 +24,7 @@ namespace NzbDrone.Core.Repository
set;
}
[SubSonicLongString]
public string Overview
{
get;
@ -51,5 +54,6 @@ namespace NzbDrone.Core.Repository
get;
set;
}
}
}