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