版本260406
This commit is contained in:
23
OrpaonVision.SiteApp/Runtime/Contracts/RuntimeDecisionDto.cs
Normal file
23
OrpaonVision.SiteApp/Runtime/Contracts/RuntimeDecisionDto.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user