jellyfin/MediaBrowser.Model/Entities/TV/Series.cs
2012-09-08 15:05:18 -04:00

13 lines
301 B
C#

using System;
using System.Collections.Generic;
namespace MediaBrowser.Model.Entities.TV
{
public class Series : Folder
{
public string Status { get; set; }
public IEnumerable<DayOfWeek> AirDays { get; set; }
public string AirTime { get; set; }
}
}