PIbd-22_Isaeva_A.I._FishFac.../FishFactoryContracts/SearchModels/ImplementerSearchModel.cs
2024-06-21 20:59:30 +04:00

11 lines
256 B
C#

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