Skip to content

Region DTO

Описание сущностей и типов из src/dto/region/.

Обогащено snapshot-данными бэкенд-DTO (4 из 4 типов сопоставлено, snapshot от 2026-05-05T13:21:51.699Z).

Содержание


CreateRegionCodeRequestDto

Backend-источник: core.businesslogicservice/Core.BusinessLogicService/Nuget.BusinessApiClient/Dto/RegionCode/Requests/CreateRegionCodeRequestDto.cs (core.businesslogicservice).

Поля

ПолеТип (TS)ОбязательноеОписаниеТип (C#)
codestringдаstring

Пример

json
{
  "code": "string"
}


GetRegionCodesByWorkerUserResponseDto

Backend-источник: core.businesslogicservice/Core.BusinessLogicService/Nuget.BusinessApiClient/Dto/RegionCode/Responses/GetRegionCodesByWorkerUserResponseDto.cs (core.businesslogicservice).

Поля

ПолеТип (TS)ОбязательноеОписаниеТип (C#)
regionCodesRegionCodeDto[]даList<RegionCodeDto>

Пример

json
{
  "regionCodes": []
}


RegionCodeDto

Backend-источник: core.businesslogicservice/Core.BusinessLogicService/Nuget.BusinessApiClient/Dto/RegionCode/RegionCodeDto.cs (core.businesslogicservice).

Поля

ПолеТип (TS)ОбязательноеОписаниеТип (C#)
idnumberдаint
codestringдаstring

Пример

json
{
  "id": 0,
  "code": "string"
}


UpdateRegionCodeRequestDto

Backend-источник: core.businesslogicservice/Core.BusinessLogicService/Nuget.BusinessApiClient/Dto/RegionCode/Requests/UpdateRegionCodeRequestDto.cs (core.businesslogicservice).

Поля

ПолеТип (TS)ОбязательноеОписаниеТип (C#)
idnumberдаint
codestringдаstring
namestringдаstring

Пример

json
{
  "id": 0,
  "code": "string",
  "name": "string"
}