CSharp-Single-EFCore/Bunny.Dao/Dto/User/LoginDto.cs

8 lines
186 B
C#
Raw Normal View History

2024-08-08 22:23:36 +08:00
namespace Bunny.Dao.Dto.User;
public class LoginDto
{
public string? Username { get; set; }
public string? Password { get; set; }
public string? EmailCode { get; set; }
}