Arkadiy Radaev f31982e59f res1
2024-02-06 12:37:25 +04:00

10 lines
187 B
C#

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