2023-02-12 20:41:23 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AutomobilePlantContracts.SearchModels
|
|
|
|
|
{
|
2023-02-12 22:52:23 +04:00
|
|
|
|
public class CarSearchModel
|
2023-02-12 20:41:23 +04:00
|
|
|
|
{
|
2023-02-12 22:52:23 +04:00
|
|
|
|
public int? Id { get; set; }
|
|
|
|
|
public string? CarName { get; set; }
|
2023-02-12 20:41:23 +04:00
|
|
|
|
}
|
|
|
|
|
}
|