2023-04-10 23:07:27 +04:00

12 lines
249 B
C#

namespace SofrwareInstallationContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
}
}