PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopContracts/SearchModels/ImplementerSearchModel.cs
2024-04-22 22:29:10 +04:00

10 lines
245 B
C#

namespace CarRepairShopContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; } = string.Empty;
public string? Password { get; set; } = string.Empty;
}
}