샘플 SDK 최초 Commit
This commit is contained in:
13
src/IAptabaseClient.cs
Normal file
13
src/IAptabaseClient.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user