Sergey Kozyrev
95ed066239
Work it harder, make it Do it faster, makes us More than ever, hour after hour Work is never over
17 lines
338 B
C#
17 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Contracts.SearchModels
|
|
{
|
|
public class ProductionSearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public int? UserId { get; set; }
|
|
public int? DetailId { get; set; }
|
|
}
|
|
}
|