downkyi/DownKyi.Core/Settings/ParseScope.cs

12 lines
177 B

namespace DownKyi.Core.Settings
{
public enum ParseScope
{
NOT_SET = 0,
NONE = 1,
SELECTED_ITEM,
CURRENT_SECTION,
ALL
}
}