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

10 lines
253 B
C#
Raw Normal View History

namespace Bit.App.Abstractions
{
public interface IGoogleAnalyticsService
{
void TrackPage(string pageName);
void TrackEvent(string category, string eventName);
void TrackException(string message, bool fatal);
}
}