SUBD_PIbd-23_ZakharovRA/CarShowroom/CarShowroomDataModels/SearchModel/MakeSearch.cs

15 lines
261 B
C#
Raw Normal View History

2024-05-05 22:02:53 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarShowroomDataModels.SearchModel
{
public class MakeSearch
{
public int? Id;
2024-05-05 23:59:47 +04:00
public string? Name;
2024-05-05 22:02:53 +04:00
}
}