11 lines
353 B
C#
11 lines
353 B
C#
namespace AuthorBuddy.Web.Data;
|
|
|
|
public class DocumentVector
|
|
{
|
|
public int Id { get; set; }
|
|
public int DocumentMetaId { get; set; }
|
|
public int ProjectId { get; set; }
|
|
public string Text { get; set; } = string.Empty;
|
|
public string Hash { get; set; } = string.Empty;
|
|
public float[] Embedding { get; set; } = Array.Empty<float>();
|
|
}
|