13 lines
382 B
C#
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; }
|
|
}
|