using System.Collections.Generic; namespace ShiroginSDK.Runtime.Services.Interfaces { /// /// Provides access to Firebase initialization and analytics logging. /// public interface IFirebaseService { bool IsReady { get; } void LogEvent(string eventName, Dictionary parameters = null); void TrackAppFirstOpen(); } }