20 lines
498 B
C#
20 lines
498 B
C#
|
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; }
|
|||
|
|
|||
|
}
|
|||
|
}
|