Initial commit to new repository
This commit is contained in:
15
.decompiledproj/AxCopilot/Services/LspSymbol.cs
Normal file
15
.decompiledproj/AxCopilot/Services/LspSymbol.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace AxCopilot.Services;
|
||||
|
||||
public class LspSymbol
|
||||
{
|
||||
public string Name { get; init; } = "";
|
||||
|
||||
public string Kind { get; init; } = "";
|
||||
|
||||
public int Line { get; init; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"[{Kind}] {Name} (line {Line + 1})";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user