14 lines
No EOL
404 B
C#
14 lines
No EOL
404 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ShiroginSDK.Runtime.Services.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Provides access to Firebase initialization and analytics logging.
|
|
/// </summary>
|
|
public interface IFirebaseService
|
|
{
|
|
bool IsReady { get; }
|
|
void LogEvent(string eventName, Dictionary<string, object> parameters = null);
|
|
void TrackAppFirstOpen();
|
|
}
|
|
} |