PIbd-22-Stroev-V.M.-Plumbin.../PlumbingRepair/PlumbingRepairContracts/SearchModels/WorkSearchModel.cs

15 lines
299 B
C#
Raw Normal View History

2024-02-13 23:15:11 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PlumbingRepairContracts.SearchModels
{
2024-02-15 12:18:02 +04:00
public class WorkSearchModel
2024-02-13 23:15:11 +04:00
{
public int? Id { get; set; }
2024-02-15 12:18:02 +04:00
public string? WorkName { get; set; }
2024-02-13 23:15:11 +04:00
}
}