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)
}