Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.DTOModel/Base/Dto/RegisterDto.cs

17 lines
386 B
C#
Raw Normal View History

2022-04-07 22:48:10 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-01-02 14:29:16 +08:00
namespace Yi.Framework.DtoModel.Base.Dto
2022-04-07 22:48:10 +08:00
{
public class RegisterDto
{
2023-01-05 20:32:58 +08:00
public string UserName { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
2022-04-07 22:48:10 +08:00
2023-01-05 20:32:58 +08:00
public string Name { get; set; } = string.Empty;
2022-04-07 22:48:10 +08:00
}
}