mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
13 lines
301 B
C#
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; }
|
|
}
|
|
}
|