18 lines
460 B
C#
18 lines
460 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; }
|
|
}
|
|
}
|