User továbbgondolása

This commit is contained in:
2025-03-17 12:10:41 +01:00
parent 0e06382eee
commit 8c1e60889d
11 changed files with 306 additions and 44 deletions
+8 -1
View File
@@ -1,4 +1,6 @@
namespace WorkFlowCheck.Common.DTO
using System.ComponentModel.DataAnnotations;
namespace WorkFlowCheck.Common.DTO
{
public class UserDTO
{
@@ -12,4 +14,9 @@
public required ICollection<RoleDTO> RoleDTO { get; set; } = new List<RoleDTO>();
}
public class UserSimpleDTO
{
public string UserName { get; set; } = null!;
public string Password { get; set; }
}
}