2012-07-19 22:22:44 -04:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2012-07-20 10:47:39 -04:00
|
|
|
|
using System;
|
2012-07-20 15:03:11 -04:00
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Collections.Generic;
|
2012-07-12 02:55:27 -04:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.TV.Entities
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Series : Folder
|
|
|
|
|
|
{
|
2012-07-19 22:22:44 -04:00
|
|
|
|
public string TvdbId { get; set; }
|
2012-07-12 02:55:27 -04:00
|
|
|
|
public string Status { get; set; }
|
2012-07-20 15:03:11 -04:00
|
|
|
|
public IEnumerable<DayOfWeek> AirDays { get; set; }
|
2012-07-20 10:47:39 -04:00
|
|
|
|
public string AirTime { get; set; }
|
2012-07-12 02:55:27 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|