bitwarden-android/src/App/Abstractions/IDeviceActionService.cs

14 lines
360 B
C#
Raw Normal View History

2019-04-19 16:11:17 +03:00
using Bit.Core.Enums;
using System.Threading.Tasks;
2019-04-10 06:33:12 +03:00
namespace Bit.App.Abstractions
2019-04-10 06:24:03 +03:00
{
public interface IDeviceActionService
{
2019-04-19 16:11:17 +03:00
DeviceType DeviceType { get; }
2019-04-10 06:24:03 +03:00
void Toast(string text, bool longDuration = false);
bool LaunchApp(string appName);
2019-04-10 06:33:12 +03:00
Task ShowLoadingAsync(string text);
Task HideLoadingAsync();
2019-04-10 06:24:03 +03:00
}
}