moved history over to objectdb

This commit is contained in:
kay.one 2013-02-23 13:29:22 -08:00
commit f568fdad6a
20 changed files with 259 additions and 494 deletions

View file

@ -0,0 +1,19 @@
using System.Linq;
using System;
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.History
{
public class History : ModelBase
{
public string NzbTitle { get; set; }
public QualityModel Quality { get; set; }
public DateTime Date { get; set; }
public string Indexer { get; set; }
public string NzbInfoUrl { get; set; }
public string ReleaseGroup { get; set; }
public Episode Episode { get; set; }
}
}