bitwarden-android/src/App/Abstractions/Services/IClipboardService.cs
2016-05-06 22:29:03 -04:00

7 lines
132 B
C#

namespace Bit.App.Abstractions
{
public interface IClipboardService
{
void CopyToClipboard(string text);
}
}