11 lines
209 B
C#
Raw Normal View History

2024-04-21 20:39:51 +04:00
namespace ShipyardContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
}
}