1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-31 23:53:25 +00:00
Files
mobile/src/App/Abstractions/Services/IDeviceActionService.cs
2017-07-22 21:06:53 -04:00

15 lines
350 B
C#

using System;
using System.Threading.Tasks;
namespace Bit.App.Abstractions
{
public interface IDeviceActionService
{
void CopyToClipboard(string text);
bool OpenFile(byte[] fileData, string id, string fileName);
bool CanOpenFile(string fileName);
Task SelectFileAsync();
void ClearCache();
}
}