using System.Threading.Tasks; namespace Robust.Client.UserInterface { public interface IClipboardManager { Task GetText(); void SetText(string text); } }