mirror of
https://github.com/bitwarden/mobile
synced 2025-12-31 23:53:25 +00:00
15 lines
350 B
C#
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();
|
|
}
|
|
}
|