Files
CodeAnalizer/CodeBase/Models/CodeChunk.cs

14 lines
426 B
C#

namespace CodeBase.Models
{
public class CodeChunk
{
public string FilePath { get; set; }
public string ClassName { get; set; }
public string MethodName { get; set; }
public string Documentation { get; set; }
public string Content { get; set; }
public float[] Vector { get; set; }
public List<string> OutgoingCalls { get; set; } = new List<string>();
}
}