Sonarr/NzbDrone.Core/Tv/SeriesStatistics.cs

14 lines
332 B
C#
Raw Normal View History

2013-04-20 20:09:12 +00:00
using System;
namespace NzbDrone.Core.Tv
{
public class SeriesStatistics
{
public int SeriesId { get; set; }
public int NumberOfSeasons { get; set; }
public DateTime? NextAiring { get; set; }
public int EpisodeFileCount { get; set; }
public int EpisodeCount { get; set; }
}
}