User.cs 638 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. namespace WebApplicationAvaloniaForMe.Models;
  4. public partial class User
  5. {
  6. public int Id { get; set; }
  7. public string Sname { get; set; } = null!;
  8. public string Fname { get; set; } = null!;
  9. public string Lname { get; set; } = null!;
  10. public DateTime Dob { get; set; }
  11. public int? Gender { get; set; }
  12. public int? Idroles { get; set; }
  13. public string Login { get; set; } = null!;
  14. public string Passwords { get; set; } = null!;
  15. public virtual Gender? GenderNavigation { get; set; }
  16. public virtual Role? IdrolesNavigation { get; set; }
  17. }