mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 14:03:03 +03:00
Add GPL modules
This commit is contained in:
17
MediaBrowser.Controller/Entities/IHasProgramAttributes.cs
Normal file
17
MediaBrowser.Controller/Entities/IHasProgramAttributes.cs
Normal file
@@ -0,0 +1,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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user