Role.cs 298 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication5.Models;
  4. public partial class Role
  5. {
  6. public int Id { get; set; }
  7. public string Role1 { get; set; } = null!;
  8. public virtual ICollection<Logintable> Logintables { get; set; } = new List<Logintable>();
  9. }