PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopContracts/SearchModels/ImplementerSearchModel.cs
2024-04-14 16:11:19 +04:00

16 lines
357 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
}
}