Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.DTOModel/Base/Dto/RegisterDto.cs
2023-01-05 20:32:58 +08:00

17 lines
386 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.DtoModel.Base.Dto
{
public class RegisterDto
{
public string UserName { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
}
}