Bitwarden-app-android-iphon.../src/App/Abstractions/IDeviceActionService.cs

17 lines
503 B
C#
Raw Normal View History

2019-04-19 15:11:17 +02:00
using Bit.Core.Enums;
using System.Threading.Tasks;
2019-04-10 05:33:12 +02:00
namespace Bit.App.Abstractions
2019-04-10 05:24:03 +02:00
{
public interface IDeviceActionService
{
2019-04-19 15:11:17 +02:00
DeviceType DeviceType { get; }
2019-04-10 05:24:03 +02:00
void Toast(string text, bool longDuration = false);
bool LaunchApp(string appName);
2019-04-10 05:33:12 +02:00
Task ShowLoadingAsync(string text);
Task HideLoadingAsync();
bool OpenFile(byte[] fileData, string id, string fileName);
bool CanOpenFile(string fileName);
Task ClearCacheAsync();
2019-04-10 05:24:03 +02:00
}
}