- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication3.Models;
- public partial class UsersWithRole
- {
- public int IdUser { get; set; }
- public int IdRole { get; set; }
- public virtual Usersrole IdRoleNavigation { get; set; } = null!;
- public virtual User IdUserNavigation { get; set; } = null!;
- }
|