6d115f158e
- Rudder.Core.dll rebuilt from csharp-sdk effects rewrite (96,768 bytes) - Realtime/ adapters, UnityRealtimeTransportFactory, UnityPlanStateStore, UnityPlanScheduler, WebGL jslib and RealtimeUrl config deleted (with .meta) - Scenarios sample rewired to client.Effects; samples login path updated - AGENTS.md/README/CHANGELOG/package docs + agent skill updated; realtime.md skill doc removed
13 lines
386 B
C#
13 lines
386 B
C#
namespace RudderSdk.Unity
|
|
{
|
|
public class RudderUnityClientOptions
|
|
{
|
|
public string BaseUrl { get; set; }
|
|
public string ProjectKey { get; set; }
|
|
public int TimeoutSeconds { get; set; } = 10;
|
|
public IUnityKeyValueStore KeyValueStore { get; set; }
|
|
public IUnityRequestExecutor RequestExecutor { get; set; }
|
|
public IUnityLoggerSink LoggerSink { get; set; }
|
|
}
|
|
}
|