namespace Jellyfin.Plugin.JRay.Models;
///
/// The action a applies to matching items.
/// A given scope+value can hold at most one action at a time, so an item
/// can never be both prioritised and ignored by the same target.
///
public enum PolicyAction
{
/// Push matching items to the front of the work queue.
Prioritise,
/// Exclude matching items from the work queue entirely.
Ignore
}