11 lines
221 B
C#
Raw Normal View History

2023-04-03 17:46:11 +04:00
namespace SoftwareInstallationContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
}
}