mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
10 lines
253 B
C#
10 lines
253 B
C#
|
namespace Bit.App.Abstractions
|
|||
|
{
|
|||
|
public interface IGoogleAnalyticsService
|
|||
|
{
|
|||
|
void TrackPage(string pageName);
|
|||
|
void TrackEvent(string category, string eventName);
|
|||
|
void TrackException(string message, bool fatal);
|
|||
|
}
|
|||
|
}
|