PIbd-21_Medvedkov_Coursach/ComputerShopContracts/SearchModels/ComponentSearchModel.cs

10 lines
204 B
C#
Raw Normal View History

2024-05-01 04:42:57 +04:00
namespace ComputerShopContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public int? UserId { get; set; }
public string? ComponentName { get; set; }
}
}