[ADD] Join tables. Added attributes to role.

This commit is contained in:
max
2025-02-10 02:11:35 +01:00
parent 2938e1311f
commit 65d625a30d
6 changed files with 52 additions and 11 deletions

View File

@@ -0,0 +1,7 @@
namespace DotBased.AspNet.Authority.EFCore.Models;
public class RoleUser
{
public Guid RoleId { get; set; }
public Guid UserId { get; set; }
}