namespace NetinaCMS.Core.Abstracts; public interface IStorageService : IScopedDependency { Task UploadObjectFromFileAsync(string fileName, string filePath, string contentType, byte[] fileBytes); Task UploadObjectFromFileAsync(string fileName, string filePath, string contentType, Stream fileStream, bool fixName = true); Task> GetStorageFiles(StorageFileType fileType); }