PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/SearchModels/ComponentSearchModel.cs

9 lines
191 B
C#
Raw Normal View History

2024-03-13 14:54:56 +04:00
namespace ConfectioneryContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}