14 lines
370 B
C#
14 lines
370 B
C#
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Aptabase.WPF;
|
|
|
|
/// <summary>
|
|
/// Aptabase client used for tracking events
|
|
/// </summary>
|
|
public interface IAptabaseClient : IAsyncDisposable
|
|
{
|
|
void Initialize(string appKey, AptabaseOptions? options = null, ILogger? logger = null);
|
|
Task TrackEvent(string eventName, Dictionary<string, object>? props = null);
|
|
}
|
|
|