15 lines
312 B
C#
Raw Normal View History

2024-03-20 19:37:08 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssemblyContracts.SearchModels
{
public class WorkpieceSearchModel
{
public int? Id { get; set; }
public string? WorkpieceName { get; set; }
}
}