Files

26 lines
717 B
C#

using System.Collections.Generic;
namespace XP.ReportEngine.Models
{
/// <summary>
/// 处理器输出数据封装 | Processor output data wrapper
/// </summary>
public class ProcessorOutput
{
/// <summary>
/// 处理器类型名称 | Processor type name
/// </summary>
public string ProcessorType { get; set; }
/// <summary>
/// 输出数据字典 | Output data dictionary
/// </summary>
public Dictionary<string, object> OutputData { get; set; } = new();
/// <summary>
/// 关联的已标注图像 | Associated annotated image
/// </summary>
public ImageData AnnotatedImage { get; set; }
}
}