<PackageReference Include="Microsoft.Identity.Client" Version="4.82.1-preview" />

Microsoft.Identity.Client.Internal.DeviceCodeResponse

namespace Microsoft.Identity.Client.Internal { internal class DeviceCodeResponse : OAuth2ResponseBase { public string UserCode { get; set; } public string DeviceCode { get; set; } public string VerificationUrl { get; set; } public string VerificationUri { get; set; } public long ExpiresIn { get; set; } public long Interval { get; set; } public string Message { get; set; } public DeviceCodeResult GetResult(string clientId, ISet<string> scopes); public DeviceCodeResponse(); } }