CourseWork_CarCenter/CarCenter/CarCenterContracts/SearchModels/InspectionSearchModel.cs

20 lines
498 B
C#
Raw Normal View History

2024-04-27 22:39:17 +04:00
using CarCenterDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterContracts.SearchModels
{
public class InspectionSearchModel
{
public int? Id { get; set; }
public string? InspectionName { get; set; }
public DateTime? InspectionDate { get; set; }
public int? AdministratorId { get; set; }
public int? EmployeeId { get; set; }
}
}