BotSharp/src/Infrastructure/BotSharp.Abstraction/Files/Models/KnowledgeFileModel.cs
2024-09-19 11:43:49 -05:00

13 lines
382 B
C#

namespace BotSharp.Abstraction.Files.Models;
public class KnowledgeFileModel
{
public Guid FileId { get; set; }
public string FileName { get; set; }
public string FileExtension { get; set; }
public string FileSource { get; set; }
public string ContentType { get; set; }
public string FileUrl { get; set; }
public DocMetaRefData? RefData { get; set; }
}