Coursach/Course/Contracts/SearchModels/ProductSearchModel.cs

18 lines
373 B
C#
Raw Normal View History

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; }
2024-04-27 21:46:39 +04:00
public int? MachineId { get; set; }
public int? DetailId { get; set; }
}
}