BotSharp/src/Infrastructure/BotSharp.Abstraction/Files/Models/KnowledgeFileModel.cs

13 lines
382 B
C#
Raw Normal View History

2024-09-10 19:33:42 +00:00
namespace BotSharp.Abstraction.Files.Models;
public class KnowledgeFileModel
{
2024-09-17 17:50:39 +00:00
public Guid FileId { get; set; }
2024-09-10 19:33:42 +00:00
public string FileName { get; set; }
public string FileExtension { get; set; }
2024-09-19 16:43:49 +00:00
public string FileSource { get; set; }
2024-09-10 19:33:42 +00:00
public string ContentType { get; set; }
public string FileUrl { get; set; }
2024-09-18 15:35:28 +00:00
public DocMetaRefData? RefData { get; set; }
2024-09-10 19:33:42 +00:00
}