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

11 lines
292 B
C#
Raw Normal View History

2024-09-10 19:33:42 +00:00
namespace BotSharp.Abstraction.Files.Models;
public class KnowledgeFileModel
{
public string FileId { get; set; }
public string FileName { get; set; }
public string FileExtension { get; set; }
public string ContentType { get; set; }
public string FileUrl { get; set; }
}