UsersWithRole.cs 339 B

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