CourseWork_FurnitureFactory/FurnitureFactory/FurnitureContracts/SearchModels/HeadsetModuleSearchModel.cs

15 lines
301 B
C#
Raw Normal View History

2023-04-05 22:38:32 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureContracts.SearchModels
{
internal class HeadsetModuleSearchModel
{
public string? Name { get; set; }
public int? Id { get; set; }
}
}