17 lines
581 B
C#
17 lines
581 B
C#
namespace CodeBase.Models
|
|
{
|
|
public class RetrievedContext
|
|
{
|
|
public string EntityName { get; set; }
|
|
public string FilePath { get; set; }
|
|
public string Content { get; set; }
|
|
public string ProjectName { get; set; }
|
|
|
|
// Оценка релевантности (полезно для отладки качества поиска)
|
|
public double SimilarityScore { get; set; }
|
|
public List<string> OutgoingDependencies { get; set; } = new();
|
|
public List<string> IncomingDependencies { get; set; } = new();
|
|
|
|
}
|
|
}
|