feat: добавил получение person id сотрудников
All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 1m45s

This commit is contained in:
2026-01-25 00:33:09 +03:00
parent 39201e561f
commit ed9717df07
10 changed files with 409 additions and 77 deletions

View File

@@ -0,0 +1,14 @@
using System.Text.Json.Serialization;
namespace SfeduSchedule.DTO.Responses;
public record SearchPersonResponse(
IReadOnlyList<SearchPerson> Persons
);
public record SearchPerson(
[property: JsonPropertyName("name")]
string Name,
[property: JsonPropertyName("person_id")]
string PersonId
);