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

11 lines
298 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;
public string Pdf2TextConverter { get; set; }
public string Pdf2ImageConverter { get; set; }
}