Logintable.cs 406 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication5.Models;
  4. public partial class Logintable
  5. {
  6. public int Id { get; set; }
  7. public string Login { get; set; } = null!;
  8. public string Password { get; set; } = null!;
  9. public int IdRole { get; set; }
  10. public virtual Role IdRoleNavigation { get; set; } = null!;
  11. public virtual User? User { get; set; }
  12. }