AddChatRequestDto
Backend-источник: features.chatservice/Features.ChatService/Nuget.ChatApiClient/Dto/Requests/AddChatRequestDto.cs (features.chatservice).
Поля
| Поле | Тип (TS) | Обязательное | Описание | Тип (C#) |
|---|---|---|---|---|
chatUsers | number[] | да | — | List<int> |
chatType | ChatTypeDto | да | — | ChatTypeDto |
workerId | number | да | — | int |
chatName | string | null | нет | — | string? |
chatAvatar | string | null | нет | — | string? |
Пример
json
{
"chatUsers": [],
"chatType": "<ChatTypeDto>",
"workerId": 0,
"chatName": "string",
"chatAvatar": "string"
}