namespace JdeScoping.SecureStoreManager.Services; /// /// Abstraction for platform-specific clipboard operations. /// Enables unit testing of view models that need clipboard access. /// public interface IClipboardService { /// /// Copies text to the system clipboard. /// /// The text to copy. Task SetTextAsync(string text); }