using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CarCenterDataModels.Models { public interface IInspectionModel : IId { string InspectionName { get; } DateTime? InspectionDate { get; } int AdministratorId { get; } int? EmployeeId { get; } public Dictionary InspectionCars { get; } } }