namespace XmobiTea.MiniDeviceId
{
///
/// Public facade for retrieving the package-defined device identifier.
/// The actual behavior is resolved by the active platform-specific Implement class.
///
public class CXDevice
{
///
/// Returns the identifier string produced by the platform-specific implementation.
/// This package does not normalize all targets to one identical storage strategy.
///
public static string GetDeviceId()
{
return Implement.Get();
}
}
}