12 lines
216 B
C#
Raw Normal View History

2023-04-16 20:16:47 +04:00
namespace PlumbingRepairContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
}
}