using Foxel.Models.DataBase; using Foxel.Services.Interface; namespace Foxel.Services.Interface; public interface IStorageProviderFactory { /// /// 根据存储类型获取对应的存储提供者 /// /// 存储类型 /// 存储提供者实例 IStorageProvider GetProvider(StorageType storageType); }