10 lines
272 B
C#
10 lines
272 B
C#
|
namespace ConfectioneryContracts.SearchModels
|
|||
|
{
|
|||
|
public class ImplementerSearchModel
|
|||
|
{
|
|||
|
public int? Id { get; set; }
|
|||
|
public string? ImplementerFIO { get; set; } = string.Empty;
|
|||
|
public string? Password { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|