10 lines
173 B
C#
10 lines
173 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Wino.Core.Domain.Interfaces
|
|||
|
|
{
|
|||
|
|
public interface IClipboardService
|
|||
|
|
{
|
|||
|
|
Task CopyClipboardAsync(string text);
|
|||
|
|
}
|
|||
|
|
}
|