mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
12 lines
No EOL
299 B
C#
12 lines
No EOL
299 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IDeviceActionService
|
|
{
|
|
void Toast(string text, bool longDuration = false);
|
|
bool LaunchApp(string appName);
|
|
Task ShowLoadingAsync(string text);
|
|
Task HideLoadingAsync();
|
|
}
|
|
} |