Sonarr/NzbDrone.Core/Model/BacklogSettingType.cs

10 lines
145 B
C#
Raw Normal View History

2012-01-26 01:02:21 +00:00
namespace NzbDrone.Core.Model
{
public enum BacklogSettingType
{
Inherit = 0,
Enable = 1,
Disable = 2
}
}