aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasProgramAttributes.cs
blob: fd1c19c977763884adb8192af1e2ee78572f2729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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; }
    }
}