2024-04-17 15:10:57 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class DefectSearchModel
|
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
|
|
|
|
public string? DefectType { get; set; }
|
2024-04-22 00:15:10 +04:00
|
|
|
|
public int? ExecutorId { get; set; }
|
2024-04-17 15:10:57 +04:00
|
|
|
|
}
|
|
|
|
|
}
|