SushiBarBase/SushiBar/SushiBarContracts/SearchModels/ImplementerSearchModel.cs
2024-05-08 08:52:27 +04:00

10 lines
240 B
C#

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