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

15 lines
478 B
C#
Raw Normal View History

2024-08-08 00:26:22 +00:00
namespace BotSharp.Abstraction.Files.Models;
public class SelectFileOptions
{
public string? Provider { get; set; }
public string? ModelId { get; set; }
public string? AgentId { get; set; }
public string? Template { get; set; }
public string? Description { get; set; }
public bool IncludeBotFile { get; set; }
public bool FromBreakpoint { get; set; }
public int? Offset { get; set; }
public IEnumerable<string>? ContentTypes { get; set; }
}