Generator Changes at 9/27/2025 8:46:36 AM
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace CMSMicroservice.Domain.Entities;
|
||||
//نقش کاربر
|
||||
public class UserRole : BaseAuditableEntity
|
||||
{
|
||||
//شناسه نقش
|
||||
public long RoleId { get; set; }
|
||||
//Role Navigation Property
|
||||
public virtual Role Role { get; set; }
|
||||
//شناسه کاربر
|
||||
public long UserId { get; set; }
|
||||
//User Navigation Property
|
||||
public virtual User User { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user