Coursach/Course/Contracts/SearchModels/ProductSearchModel.cs
2024-05-01 15:44:39 +04:00

19 lines
410 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class ProductSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
public int? UserId { get; set; }
public int? MachineId { get; set; }
public int? WorkerId { get; set; }
public int? DetailId { get; set; }
}
}