13 lines
No EOL
412 B
C#
13 lines
No EOL
412 B
C#
using System.Collections.Generic;
|
|
using ShiroginSDK.Runtime.Modules.Analytics.Enums;
|
|
|
|
namespace ShiroginSDK.Runtime.Services.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Provides unified analytics logging for Firebase, AppsFlyer, and Facebook.
|
|
/// </summary>
|
|
public interface IAnalyticsService
|
|
{
|
|
void LogEvent(AnalyticsEventType eventType, Dictionary<string, object> parameters = null);
|
|
}
|
|
} |