namespace RudderSdk.Core.Abstractions; /// /// Provides a stable device identifier for device login. /// The default is ; games should provide a /// persistent one (Unity uses SystemInfo.deviceUniqueIdentifier). /// public interface IDeviceIdProvider { /// Stable identifier of this device/install. string DeviceId { get; } }