版本260406

This commit is contained in:
2026-04-06 22:04:05 +08:00
parent 7dc5e73af7
commit 0b150470be
216 changed files with 98993 additions and 33 deletions

View File

@@ -0,0 +1,23 @@
namespace OrpaonVision.SiteApp.Runtime.Contracts
{
/// <summary>
/// 规则判定结果。
/// </summary>
public sealed class RuntimeDecisionDto
{
/// <summary>
/// 是否通过。
/// </summary>
public bool IsPass { get; init; }
/// <summary>
/// 判定编码。
/// </summary>
public string Code { get; init; } = string.Empty;
/// <summary>
/// 判定说明。
/// </summary>
public string Message { get; init; } = string.Empty;
}
}