- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication4.Models;
- public partial class Role
- {
- public int Id { get; set; }
- public string RoleName { get; set; } = null!;
- public virtual ICollection<User> Users { get; set; } = new List<User>();
- }
|