mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			497 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			497 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#pragma warning disable CS1591
 | 
						|
 | 
						|
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; }
 | 
						|
    }
 | 
						|
}
 |