13 lines
348 B
C#
13 lines
348 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; }
|
|
}
|
|
}
|