| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace АвтотранспортноеПредприятие.Models
- {
- public class DriverInfo
- {
- public string full_name { get; set; }
- public string emp_position { get; set; }
- public string driver_license { get; set; }
- public string license_category { get; set; }
- public int garage_number { get; set; }
- public string garage_address { get; set; }
- public string license_plate { get; set; }
- public string model_name { get; set; }
- public string manufacturer { get; set; }
- }
- }
|