UsersWithRole.cs 373 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication4.Models;
  4. public partial class UsersWithRole
  5. {
  6. public int IdUser { get; set; }
  7. public int IdRole { get; set; }
  8. public int Id { get; set; }
  9. public virtual SystemRole IdRoleNavigation { get; set; } = null!;
  10. public virtual User IdUserNavigation { get; set; } = null!;
  11. }