mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-30 12:47:59 +08:00
14 lines
456 B
C#
14 lines
456 B
C#
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
|
|
|
|
|
|
using OpenAuth.IdentityServer.Quickstart.Consent;
|
|
|
|
namespace OpenAuth.IdentityServer.Quickstart.Device
|
|
{
|
|
public class DeviceAuthorizationViewModel : ConsentViewModel
|
|
{
|
|
public string UserCode { get; set; }
|
|
public bool ConfirmUserCode { get; set; }
|
|
}
|
|
} |