This commit is contained in:
2024-05-08 17:17:11 +08:00
parent 0696f555b2
commit 2f1fca4df2
4528 changed files with 635638 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
public class ErrorInfo
{
/// <summary>
/// 错误行号
/// </summary>
public int Row
{
get;
set;
}
/// <summary>
/// 错误列
/// </summary>
public string Column
{
get;
set;
}
/// <summary>
/// 错误类型
/// </summary>
public string Reason
{
get;
set;
}
}
}