SystemRole.cs 320 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication4.Models;
  4. public partial class SystemRole
  5. {
  6. public int IdRole { get; set; }
  7. public string RoleName { get; set; } = null!;
  8. public virtual ICollection<UsersWithRole> UsersWithRoles { get; set; } = new List<UsersWithRole>();
  9. }