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

23 lines
652 B
C#
Raw Normal View History

2013-03-31 23:22:16 -07:00
using System;
2013-02-28 23:03:41 -08:00
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Tv;
2010-10-11 19:49:27 -07:00
2013-02-28 23:03:41 -08:00
namespace NzbDrone.Core.MediaFiles
2010-10-11 19:49:27 -07:00
{
2013-02-28 23:03:41 -08:00
public class EpisodeFile : ModelBase
2010-10-11 19:49:27 -07:00
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
2010-10-11 19:49:27 -07:00
public string Path { get; set; }
public long Size { get; set; }
public DateTime DateAdded { get; set; }
public string SceneName { get; set; }
2013-03-31 23:22:16 -07: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-11 19:49:27 -07:00
}
2011-04-09 19:44:01 -07:00
}