ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/SearchModels/ComponentSearchModel.cs
2023-02-03 23:25:31 +04:00

9 lines
191 B
C#

namespace ConfectioneryContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}