29 lines
No EOL
719 B
C#
29 lines
No EOL
719 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ShiroginSDK.Runtime.Modules.Events
|
|
{
|
|
public static partial class ShiroginEvents
|
|
{
|
|
public static class RemoteConfig
|
|
{
|
|
[Serializable]
|
|
public class FirebaseReadyEvent
|
|
{
|
|
}
|
|
|
|
[Serializable]
|
|
public class RemoteConfigUpdatedEvent
|
|
{
|
|
public string Json;
|
|
public Dictionary<string, string> Values;
|
|
|
|
public RemoteConfigUpdatedEvent(string json, Dictionary<string, string> values)
|
|
{
|
|
Json = json;
|
|
Values = values;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |