2023-04-17 18:09:26 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace JewelryStoreContracts.SearchModels
|
|
|
|
|
{
|
2023-04-17 18:17:53 +04:00
|
|
|
|
public class ImplementerSearchModel
|
2023-04-17 18:09:26 +04:00
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? ImplementerFIO { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? Password { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|