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