using Microsoft.Extensions.Logging; namespace Aptabase.WPF; /// /// Aptabase client used for tracking events /// public interface IAptabaseClient : IAsyncDisposable { void Initialize(string appKey, AptabaseOptions? options = null, ILogger? logger = null); Task TrackEvent(string eventName, Dictionary? props = null); }