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

19 lines
499 B
C#
Raw Normal View History

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