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

9 lines
186 B
C#
Raw Normal View History

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