PIbd-23_Sergunov_M.A._GiftShop/GiftShop/GiftShopContracts/SearchModels/ImplementerSearchModel.cs

12 lines
210 B
C#

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