1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 15:53:44 +00:00

Clipboard service and view site page

This commit is contained in:
Kyle Spearrin
2016-05-06 22:29:03 -04:00
parent 71be9f8780
commit d4b56e0e16
12 changed files with 192 additions and 39 deletions

View File

@@ -0,0 +1,7 @@
namespace Bit.App.Abstractions
{
public interface IClipboardService
{
void CopyToClipboard(string text);
}
}