Pibd-22_Morozov_V.S_Automob.../AutomobilePlant/AbstractAutoContracts/SearchModel/CarSearchModel.cs

15 lines
297 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantContracts.SearchModel
{
2023-04-19 16:41:28 +04:00
public class CarSearchModel
{
public int? Id { get; set; }
2023-04-19 16:41:28 +04:00
public string? CarName { get; set; }
}
}