16 lines
269 B
C#
16 lines
269 B
C#
namespace AxCopilot.Services;
|
|
|
|
public class LspLocation
|
|
{
|
|
public string FilePath { get; init; } = "";
|
|
|
|
public int Line { get; init; }
|
|
|
|
public int Character { get; init; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{FilePath}:{Line + 1}:{Character + 1}";
|
|
}
|
|
}
|