blob: 777b4082878fd315b41c0b66c37973ff4e803f9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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; }
}
}
|