mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
27 lines
668 B
C#
27 lines
668 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.History
|
|
{
|
|
public class History : ModelBase
|
|
{
|
|
public History()
|
|
{
|
|
Data = new Dictionary<string, string>();
|
|
}
|
|
|
|
public int EpisodeId { get; set; }
|
|
public int SeriesId { get; set; }
|
|
public string SourceTitle { get; set; }
|
|
public QualityModel Quality { get; set; }
|
|
public DateTime Date { get; set; }
|
|
|
|
public Episode Episode { get; set; }
|
|
public Series Series { get; set; }
|
|
|
|
public Dictionary<string, string> Data { get; set; }
|
|
}
|
|
|
|
} |