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

8 lines
191 B
C#
Raw Normal View History

2019-04-10 06:24:03 +03:00
namespace Bit.App.Abstractions
{
public interface IDeviceActionService
{
void Toast(string text, bool longDuration = false);
bool LaunchApp(string appName);
}
}