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