1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Core/Tv/SeriesStatistics.cs

19 lines
499 B
C#
Raw Normal View History

2013-04-20 22:09:12 +02:00
using System;
2013-04-20 23:23:17 +02:00
using NzbDrone.Core.Datastore;
2013-04-20 22:09:12 +02:00
namespace NzbDrone.Core.Tv
{
2013-04-20 23:23:17 +02:00
public class SeriesStatistics : ResultSet
2013-04-20 22:09:12 +02:00
{
public int SeriesId { get; set; }
public int NumberOfSeasons { get; set; }
2013-04-20 23:23:17 +02:00
public string NextAiringString { get; set; }
public DateTime? NextAiring
{
get { return Convert.ToDateTime(NextAiringString); }
}
2013-04-20 22:09:12 +02:00
public int EpisodeFileCount { get; set; }
public int EpisodeCount { get; set; }
}
}