10 lines
177 B
C#
10 lines
177 B
C#
|
|
|||
|
namespace MediaBrowser.Controller.Entities
|
|||
|
{
|
|||
|
public interface IHasProgramAttributes
|
|||
|
{
|
|||
|
bool IsMovie { get; set; }
|
|||
|
bool IsSports { get; set; }
|
|||
|
}
|
|||
|
}
|