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

10 lines
179 B
C#
Raw Normal View History

2024-04-17 11:28:47 +04:00

namespace FishFactoryContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? Email { get; set; }
}
}