PIbd-22_Isaeva_A.I._FishFac.../FishFactoryContracts/SearchModels/ImplementerSearchModel.cs

11 lines
262 B
C#
Raw Normal View History


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;
}
}