using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Wino.Core.Domain.Interfaces; public interface IMimeStorageService { Task GetMimeRootPathAsync(); Task> GetAccountsMimeStorageSizesAsync(IEnumerable accountIds); Task DeleteAccountMimeStorageAsync(Guid accountId); Task DeleteAccountMimeStorageOlderThanAsync(Guid accountId, DateTime cutoffDateUtc); }