Files
Aptabase-WPF-sdk/src/IAptabaseClient.cs
2025-07-07 16:06:18 +09:00

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);
}