You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
515 B
C#
24 lines
515 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace HttpClientStudy.WebApp.Models
|
|
{
|
|
/// <summary>
|
|
/// 获取Token 请求类
|
|
/// </summary>
|
|
public class UserForToken
|
|
{
|
|
/// <summary>
|
|
/// 账号
|
|
/// </summary>
|
|
[Required]
|
|
public required string Account { get; set; }
|
|
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
[Required]
|
|
public required string Password { get; set; }
|
|
}
|
|
}
|