mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-04 11:42:23 +00:00
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; }
|
|
}
|
|
}
|