bitwarden-android/src/App/Abstractions/Services/IGoogleAnalyticsService.cs

16 lines
515 B
C#
Raw Normal View History

using System;
namespace Bit.App.Abstractions
{
public interface IGoogleAnalyticsService
{
void RefreshUserId();
void TrackPage(string pageName);
2016-08-04 07:25:10 +03:00
void TrackAppEvent(string eventName, string label = null);
void TrackExtensionEvent(string eventName, string label = null);
void TrackEvent(string category, string eventName, string label = null);
void TrackException(string message, bool fatal);
void Dispatch(Action completionHandler = null);
}
}