Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Entities/IHasProgramAttributes.cs

10 lines
177 B
C#
Raw Normal View History

2015-06-01 10:49:23 -04:00

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