1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-21 11:02:01 +02:00

24 lines
698 B
C#
Raw Normal View History

using System;
using NzbDrone.Core.Model;
using NzbDrone.Core.Repository.Quality;
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository
{
public class History
{
2011-04-05 20:14:43 -07:00
[SubSonicPrimaryKey]
public virtual int HistoryId { get; set; }
2011-04-09 19:44:01 -07:00
public virtual int EpisodeId { get; set; }
public string NzbTitle { get; set; }
public QualityTypes Quality { get; set; }
public DateTime Date { get; set; }
public bool IsProper { get; set; }
public IndexerType? Indexer { get; set; }
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual Episode Episode { get; protected set; }
}
2011-04-09 19:44:01 -07:00
}