using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CarCenterDataModels.Models; namespace CarCenterContracts.BindingModels { public class InspectionBindingModel : IInspectionModel { public int Id { get; set; } public string InspectionName { get; set; } = string.Empty; public DateTime? InspectionDate { get; set; } public int AdministratorId { get; set; } public int? EmployeeId { get; set; } public Dictionary InspectionCars { get; set; } = new(); } }