mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
26 lines
465 B
C#
26 lines
465 B
C#
using MediaBrowser.Model.LiveTv;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public interface IHasProgramAttributes
|
|
{
|
|
bool IsMovie { get; set; }
|
|
|
|
bool IsSports { get; }
|
|
|
|
bool IsNews { get; }
|
|
|
|
bool IsKids { get; }
|
|
|
|
bool IsRepeat { get; set; }
|
|
|
|
bool IsSeries { get; set; }
|
|
|
|
ProgramAudio? Audio { get; set; }
|
|
|
|
string EpisodeTitle { get; set; }
|
|
|
|
string ServiceName { get; set; }
|
|
}
|
|
}
|