You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
645 B
27 lines
645 B
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.SeriesStats
|
|
{
|
|
public class SeriesStatistics : ResultSet
|
|
{
|
|
public int SeriesId { get; set; }
|
|
public int SeasonCount { get; set; }
|
|
public string NextAiringString { get; set; }
|
|
public int EpisodeFileCount { get; set; }
|
|
public int EpisodeCount { get; set; }
|
|
|
|
public DateTime? NextAiring
|
|
{
|
|
get
|
|
{
|
|
DateTime nextAiring;
|
|
|
|
if (!DateTime.TryParse(NextAiringString, out nextAiring)) return null;
|
|
|
|
return nextAiring;
|
|
}
|
|
}
|
|
}
|
|
}
|