UserDatum.cs 647 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. namespace prakt1314;
  4. public partial class UserDatum
  5. {
  6. public int IdUser { get; set; }
  7. public string Surname { get; set; } = null!;
  8. public string Name { get; set; } = null!;
  9. public string? Patronymic { get; set; }
  10. public int IdGender { get; set; }
  11. public DateTime Birthdate { get; set; }
  12. public int Worktime { get; set; }
  13. public string Email { get; set; } = null!;
  14. public string? PhoneNumber { get; set; }
  15. public virtual UserGender IdGenderNavigation { get; set; } = null!;
  16. public virtual UserLogin IdUserNavigation { get; set; } = null!;
  17. }