jellyfin/MediaBrowser.Controller/Entities/TV/Series.cs

13 lines
306 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2012-07-12 06:55:27 +00:00
namespace MediaBrowser.Controller.Entities.TV
2012-07-12 06:55:27 +00:00
{
public class Series : Folder
{
public string Status { get; set; }
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
}
}