2024-08-09 21:03:29 +00:00
|
|
|
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-09 21:03:29 +00:00
|
|
|
}
|
2024-08-31 00:31:18 +00:00
|
|
|
|
|
|
|
|
public class SettingBase
|
|
|
|
|
{
|
|
|
|
|
public string Provider { get; set; }
|
|
|
|
|
}
|