2023-02-12 13:21:10 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-02-12 17:08:29 +04:00
|
|
|
|
namespace AutomobilePlantContracts.SearchModel
|
2023-02-12 13:21:10 +04:00
|
|
|
|
{
|
2023-04-19 16:41:28 +04:00
|
|
|
|
public class CarSearchModel
|
2023-02-12 13:21:10 +04:00
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
2023-04-19 16:41:28 +04:00
|
|
|
|
public string? CarName { get; set; }
|
2023-02-12 13:21:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|