using SharepointToolbox.Core.Models; namespace SharepointToolbox.Services; public interface IBrandingService { Task ImportLogoAsync(string filePath); Task SaveMspLogoAsync(LogoData logo); Task ClearMspLogoAsync(); Task GetMspLogoAsync(); }