aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasProgramAttributes.cs
blob: 0bc9ff81e37cc3b9571cb8e8627a639f6365234b (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; }
    }
}