BotSharp/src/Infrastructure/BotSharp.Abstraction/Files/FileCoreSettings.cs

15 lines
378 B
C#
Raw Normal View History

using BotSharp.Abstraction.Repositories.Enums;
namespace BotSharp.Abstraction.Files;
public class FileCoreSettings
{
public string Storage { get; set; } = FileStorageEnum.LocalFileStorage;
2024-08-31 00:31:18 +00:00
public SettingBase Pdf2TextConverter { get; set; }
public SettingBase Pdf2ImageConverter { get; set; }
}
2024-08-31 00:31:18 +00:00
public class SettingBase
{
public string Provider { get; set; }
}