Azure.Identity.DeviceCodeInfo
Details of the device code to present to a user to allow them to authenticate through the device code authentication flow.
namespace Azure.Identity
{
public struct DeviceCodeInfo
{
public string UserCode { get; }
public string DeviceCode { get; }
public Uri VerificationUri { get; }
public DateTimeOffset ExpiresOn { get; }
public string Message { get; }
public string ClientId { get; }
public IReadOnlyCollection<string> Scopes { get; }
}
}