CourseWork_FurnitureFactory/FurnitureFactory/FurnitureContracts/SearchModels/MasterSearchModel.cs

15 lines
292 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
{
2023-04-07 16:40:24 +04:00
public class MasterSearchModel
2023-04-05 22:38:32 +04:00
{
public string? Name { get; set; }
public int? Id { get; set; }
}
}