Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.DTOModel/RegisterDto.cs
2022-04-07 22:48:10 +08:00

17 lines
329 B
C#

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