using System.Collections.Generic; using ShiroginSDK.Runtime.Modules.Analytics.Enums; namespace ShiroginSDK.Runtime.Services.Interfaces { /// /// Provides unified analytics logging for Firebase, AppsFlyer, and Facebook. /// public interface IAnalyticsService { void LogEvent(AnalyticsEventType eventType, Dictionary parameters = null); } }