equipment-test/engine/modules/mono/editor/GodotTools/GodotTools/Build/BuildDiagnostic.cs
2025-01-17 16:36:38 +01:00

21 lines
520 B
C#

namespace GodotTools.Build
{
public class BuildDiagnostic
{
public enum DiagnosticType
{
Hidden,
Info,
Warning,
Error,
}
public DiagnosticType Type { get; set; }
public string? File { get; set; }
public int Line { get; set; }
public int Column { get; set; }
public string? Code { get; set; }
public string Message { get; set; } = "";
public string? ProjectFile { get; set; }
}
}