DriverInfo.cs 679 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace АвтотранспортноеПредприятие.Models
  7. {
  8. public class DriverInfo
  9. {
  10. public string full_name { get; set; }
  11. public string emp_position { get; set; }
  12. public string driver_license { get; set; }
  13. public string license_category { get; set; }
  14. public int garage_number { get; set; }
  15. public string garage_address { get; set; }
  16. public string license_plate { get; set; }
  17. public string model_name { get; set; }
  18. public string manufacturer { get; set; }
  19. }
  20. }