This commit is contained in:
Даниил Заикин
2026-06-17 20:44:53 +03:00
parent 9d153773c2
commit b133e7c656
1880 changed files with 244545 additions and 0 deletions
@@ -0,0 +1,27 @@
namespace QFSW.QC
{
/// <summary>
/// The result of querying an entity with a scan rule.
/// </summary>
public enum ScanRuleResult
{
/// <summary>
/// If the entity should be accepted by the scan rule.
/// This is the lowest priority response and should be used when in doubt.
/// </summary>
Accept = 0,
/// <summary>
/// If the entity should be rejected by the scan rule.
/// This takes priority over any other <c>Accept</c> responses.
/// </summary>
Reject = 1,
/// <summary>
/// If the entity should be forcefully accepted by the scan rule.
/// This will be immediate and overrides any other <c>Reject</c> responses.
/// No further scan rules will be considered
/// </summary>
ForceAccept = 2
}
}