10 lines
235 B
C#
Raw Normal View History

2024-03-28 21:32:49 +04:00
namespace PizzeriaContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
}
}