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

12 lines
299 B
C#
Raw Normal View History

2019-04-10 06:33:12 +03:00
using System.Threading.Tasks;
namespace Bit.App.Abstractions
2019-04-10 06:24:03 +03:00
{
public interface IDeviceActionService
{
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
}
}