Employee.cs 528 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace InvestTracker.Entities;
  4. public partial class Employee
  5. {
  6. public int Id { get; set; }
  7. public string Surname { get; set; } = null!;
  8. public string Name { get; set; } = null!;
  9. public string? Patronymic { get; set; }
  10. public string Phone { get; set; } = null!;
  11. public string Email { get; set; } = null!;
  12. public DateTime Birthday { get; set; }
  13. public int TitleId { get; set; }
  14. public virtual Title Title { get; set; } = null!;
  15. }