Добавьте файлы проекта.

This commit is contained in:
2026-07-22 20:47:51 +04:00
parent 8050e9194d
commit 17a64809cb
22 changed files with 606 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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; }
}
}