You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
haoliang-net/CncService/LogAnalyzer/LogAnalysisResult.cs

11 lines
367 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace CncService.LogAnalyzer
{
// 解析结果模型,供日志分析摘要使用
public class LogAnalysisResult
{
public string Summary { get; set; } // 摘要文本
public string DetailsJson { get; set; } // 详细信息JSON 字符串)
public double Confidence { get; set; } // 可信度0-1
}
}