Files
jellyfin-jellyfin-1/MediaBrowser.TV/Entities/Series.cs

16 lines
395 B
C#
Raw Normal View History

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