SeemGen/Models/WebPageContent.cs

38 lines
1.0 KiB
C#

using Qdrant.Client.Grpc;
using DateTime = System.DateTime;
namespace BLAIzor.Models
{
public class WebPageContent
{
public PointId Id { get; set; }
public string UId { get; set; }
public string Type { get; set; }
public int SiteId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Content { get; set; }
public float[] Vectors { get; set; }
public DateTime LastUpdated { get; set; }
public WebPageContent()
{
}
public WebPageContent(PointId id, string uId, string type, int siteId, string name, string description, string content, float[] vectors, DateTime lastUpdated)
{
Id = id;
UId = uId;
Type = type;
SiteId = siteId;
Name = name;
Description = description;
Content = content;
Vectors = vectors;
LastUpdated = lastUpdated;
}
}
}