namespace Jellyfin.Plugin.JRay.Models;
///
/// The scope a targets. More specific scopes
/// override broader ones when resolving an item's effective policy
/// (Item > Series > Genre).
///
public enum PolicyScope
{
/// Matches every item that carries a given genre.
Genre,
/// Matches every episode of a given series (by series id).
Series,
/// Matches a single library item (by item id).
Item
}