Sonarr/src/NzbDrone.Core/MediaFiles/EpisodeFile.cs

24 lines
701 B
C#
Raw Normal View History

2013-04-01 06:22:16 +00:00
using System;
2013-03-01 07:03:41 +00:00
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Tv;
2010-10-12 02:49:27 +00:00
2013-03-01 07:03:41 +00:00
namespace NzbDrone.Core.MediaFiles
2010-10-12 02:49:27 +00:00
{
2013-03-01 07:03:41 +00:00
public class EpisodeFile : ModelBase
2010-10-12 02:49:27 +00:00
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
2010-10-12 02:49:27 +00:00
public string Path { get; set; }
public long Size { get; set; }
public DateTime DateAdded { get; set; }
public string SceneName { get; set; }
public string ReleaseGroup { get; set; }
2013-04-01 06:22:16 +00:00
public QualityModel Quality { get; set; }
public LazyList<Episode> Episodes { get; set; }
public override string ToString()
{
return String.Format("[{0}] {1}", Id, Path);
}
2010-10-12 02:49:27 +00:00
}
2011-04-10 02:44:01 +00:00
}