User.cs 431 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication5.Models;
  4. public partial class User
  5. {
  6. public int IdLogin { get; set; }
  7. public string Name { get; set; } = null!;
  8. public int IdGender { get; set; }
  9. public DateTime BirthDate { get; set; }
  10. public virtual Gender IdGenderNavigation { get; set; } = null!;
  11. public virtual Logintable IdLoginNavigation { get; set; } = null!;
  12. }