PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/SearchModels/ImplementerSearchModel.cs
Arkadiy Radaev e9c62b734f res 6
2024-05-15 15:07:11 +04:00

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; }
}
}