yavsc/src/Yavsc.Server/Models/Access/DeviceAuthorizationInputModel.cs
Paul Schneider 8e8f4d3896 refactoring
2025-02-14 22:44:33 +00:00

11 lines
336 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.
namespace Yavsc.Models.Access
{
public class DeviceAuthorizationInputModel : ConsentInputModel
{
public string UserCode { get; set; }
}
}