mirror of https://github.com/lidarr/Lidarr
14 lines
332 B
C#
14 lines
332 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|