PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopContracts/SearchModels/ImplementerSearchModel.cs

12 lines
242 B
C#
Raw Permalink Normal View History

2024-05-02 22:47:27 +04:00
namespace CarRepairShopContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
}
}