Gismatullin.ISEbd-21.STO.Co.../ServiceStation/ServiceStationContracts/SearchModels/TaskSearchModel.cs

9 lines
178 B
C#
Raw Normal View History

2024-04-30 02:41:35 +04:00
namespace ServiceStationContracts.SearchModels
{
public class TaskSearchModel
2024-04-30 02:41:35 +04:00
{
public int? Id { get; set; }
public string? Name { get; set; }
}
}