mirror of
https://github.com/Lidarr/Lidarr
synced 2026-04-27 23:21:55 +02:00
13 lines
332 B
C#
13 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; }
|
|
}
|
|
}
|