Coursach/Course/Contracts/SearchModels/ProductionSearchModel.cs
Sergey Kozyrev 95ed066239 ReportFirst
Work it harder, make it
Do it faster, makes us
More than ever, hour after hour
Work is never over
2024-04-30 21:51:49 +04:00

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; }
}
}