Playvoi/Playvoi.Client/Assets/ShiroginSDK/Runtime/Services/Interfaces/IAnalyticsService.cs

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