jellyfin/MediaBrowser.TV/Entities/Series.cs

14 lines
331 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using MediaBrowser.Model.Entities;
2012-07-12 08:55:27 +02:00
namespace MediaBrowser.TV.Entities
{
public class Series : Folder
{
public string Status { get; set; }
public IEnumerable<DayOfWeek> AirDays { get; set; }
2012-07-20 16:47:39 +02:00
public string AirTime { get; set; }
2012-07-12 08:55:27 +02:00
}
}