14 lines
430 B
C#
14 lines
430 B
C#
namespace RudderSdk.Unity
|
|
{
|
|
public class RudderUnityClientOptions
|
|
{
|
|
public string BaseUrl { get; set; }
|
|
public string RealtimeUrl { 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; }
|
|
}
|
|
}
|