PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/SearchModels/ImplementerSearchModel.cs

12 lines
210 B
C#
Raw Normal View History

2024-05-15 15:07:11 +04:00
namespace GiftShopContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
}
}