ImplementerSearchModel

This commit is contained in:
VictoriaPresnyakova 2023-04-17 18:09:26 +04:00
parent c4f9648e05
commit e18572c2fb

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JewelryStoreContracts.SearchModels
{
public interface ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
}
}