1e21e33ade
Move SecureStoreManager project and tests to Deprecated folder and remove from solution. SecureStore functionality is now integrated into ConfigManager.
15 lines
432 B
C#
15 lines
432 B
C#
namespace JdeScoping.SecureStoreManager.Services;
|
|
|
|
/// <summary>
|
|
/// Abstraction for platform-specific clipboard operations.
|
|
/// Enables unit testing of view models that need clipboard access.
|
|
/// </summary>
|
|
public interface IClipboardService
|
|
{
|
|
/// <summary>
|
|
/// Copies text to the system clipboard.
|
|
/// </summary>
|
|
/// <param name="text">The text to copy.</param>
|
|
Task SetTextAsync(string text);
|
|
}
|