ZhiYi/ZhiYi.Core.Application/Dtos/UserCreationDto.cs

16 lines
311 B
C#
Raw Normal View History

2025-02-21 01:14:39 +00:00
namespace ZhiYi.Core.Application.Dtos
{
public class UserCreationDto
{
/// <summary>
/// 用户名
/// </summary>
public string UserName { get;set; }
/// <summary>
/// 密码
/// </summary>
public string PassWord { get; set; }
}
}