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; } } }