User dolgok javítása

This commit is contained in:
2025-03-15 14:27:08 +01:00
parent 2d13b0909e
commit 8793a1c77c
4 changed files with 89 additions and 5 deletions
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.Common.DTO
{
public class UserRoleDTO
{
public int Id { get; set; }
public int? RoleId { get; set; } = 0;
public int UserId { get; set; }
}
}