2012-07-20 02:22:44 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2012-07-20 14:47:39 +00:00
|
|
|
|
using System;
|
2012-07-20 19:03:11 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Collections.Generic;
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.TV.Entities
|
|
|
|
|
{
|
|
|
|
|
public class Series : Folder
|
|
|
|
|
{
|
2012-07-20 02:22:44 +00:00
|
|
|
|
public string TvdbId { get; set; }
|
2012-07-12 06:55:27 +00:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|