mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-04 19:16:49 -04:00
11 lines
177 B
C#
11 lines
177 B
C#
namespace NzbDrone.Core.DecisionEngine
|
|
{
|
|
public enum SpecificationPriority
|
|
{
|
|
Default = 0,
|
|
Parsing = 0,
|
|
Database = 0,
|
|
Disk = 1
|
|
}
|
|
}
|