BotSharp/src/Infrastructure/BotSharp.Abstraction/Files/FileCoreSettings.cs
2025-09-16 19:20:53 -05:00

9 lines
249 B
C#

using BotSharp.Abstraction.Repositories.Enums;
namespace BotSharp.Abstraction.Files;
public class FileCoreSettings
{
public string Storage { get; set; } = FileStorageEnum.LocalFileStorage;
public SettingBase? ImageConverter { get; set; }
}