2024-05-12 19:24:51 +04:00
|
|
|
|
|
|
|
|
|
namespace FishFactoryContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class ImplementerSearchModel
|
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
2024-06-19 14:38:52 +04:00
|
|
|
|
public string? ImplementerFIO { get; set; } = string.Empty;
|
|
|
|
|
public string? Password { get; set; } = string.Empty;
|
|
|
|
|
}
|
2024-05-12 19:24:51 +04:00
|
|
|
|
}
|