Generator Changes at 11/25/2025 1:59:23 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-25 02:03:51 +03:30
parent 87842f0b9b
commit 92a9a0e75d
77 changed files with 164 additions and 138 deletions
@@ -2,12 +2,12 @@ namespace CMSMicroservice.Domain.Entities;
//نقش کاربر
public class UserRole : BaseAuditableEntity
{
//شناسه نقش
//شناسه نقش
public long RoleId { get; set; }
//Role Navigation Property
//Role Navigation Property
public virtual Role Role { get; set; }
//شناسه کاربر
//شناسه کاربر
public long UserId { get; set; }
//User Navigation Property
//User Navigation Property
public virtual User User { get; set; }
}
}