11 lines
292 B
C#
11 lines
292 B
C#
|
|
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; }
|
||
|
|
}
|