- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication4.Models;
- public partial class SystemRole
- {
- public int IdRole { get; set; }
- public string RoleName { get; set; } = null!;
- public virtual ICollection<UsersWithRole> UsersWithRoles { get; set; } = new List<UsersWithRole>();
- }
|