jellyfin/MediaBrowser.Controller/Entities/IHasProgramAttributes.cs
2015-06-01 10:49:23 -04:00

10 lines
177 B
C#

namespace MediaBrowser.Controller.Entities
{
public interface IHasProgramAttributes
{
bool IsMovie { get; set; }
bool IsSports { get; set; }
}
}