1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/MediaFiles/EpisodeFile.cs

20 lines
534 B
C#
Raw Normal View History

2013-04-01 09:22:16 +03:00
using System;
2013-03-01 10:03:41 +03:00
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Tv;
2010-10-12 05:49:27 +03:00
2013-03-01 10:03:41 +03:00
namespace NzbDrone.Core.MediaFiles
2010-10-12 05:49:27 +03:00
{
2013-03-01 10:03:41 +03:00
public class EpisodeFile : ModelBase
2010-10-12 05:49:27 +03:00
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
2010-10-12 05:49:27 +03:00
public string Path { get; set; }
public long Size { get; set; }
public DateTime DateAdded { get; set; }
public string SceneName { get; set; }
2013-04-01 09:22:16 +03:00
public QualityModel Quality { get; set; }
public LazyList<Episode> Episodes { get; set; }
2010-10-12 05:49:27 +03:00
}
2011-04-10 05:44:01 +03:00
}