downkyi/DownKyi.Core/Settings/ParseScope.cs
2022-03-22 22:47:15 +08:00

12 lines
177 B
C#

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