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