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.
23 lines
461 B
C#
23 lines
461 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace HttpClientStudy.WebApp.Models
|
|
{
|
|
/// <summary>
|
|
/// 高级Get请求参数
|
|
/// </summary>
|
|
public class AdvancedGetModel
|
|
{
|
|
/// <summary>
|
|
/// 标识Id
|
|
/// </summary>
|
|
[Required]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 姓名
|
|
/// </summary>
|
|
[Required]
|
|
public required string Name { get; set; }
|
|
}
|
|
}
|