1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- namespace prakt1314;
- public partial class UserDatum
- {
- public int IdUser { get; set; }
- public string Surname { get; set; } = null!;
- public string Name { get; set; } = null!;
- public string? Patronymic { get; set; }
- public int IdGender { get; set; }
- public DateTime Birthdate { get; set; }
- public int Worktime { get; set; }
- public string Email { get; set; } = null!;
- public string? PhoneNumber { get; set; }
- public virtual UserGender IdGenderNavigation { get; set; } = null!;
- public virtual UserLogin IdUserNavigation { get; set; } = null!;
- }
|