2012-08-15 13:20:29 +00:00
|
|
|
|
using System;
|
2012-07-20 19:03:11 +00:00
|
|
|
|
using System.Collections.Generic;
|
2012-08-15 13:20:29 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.TV.Entities
|
|
|
|
|
{
|
|
|
|
|
public class Series : Folder
|
|
|
|
|
{
|
|
|
|
|
public string Status { get; set; }
|
2012-07-20 19:03:11 +00:00
|
|
|
|
public IEnumerable<DayOfWeek> AirDays { get; set; }
|
2012-07-20 14:47:39 +00:00
|
|
|
|
public string AirTime { get; set; }
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|