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

15 lines
264 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarShowroomDataModels.SearchModel
{
public class ServiceSearch
{
public int? Id;
public string? Name;
}
}