using System.Text.Json.Serialization; namespace SfeduSchedule.DTO.Responses; public record SearchPersonResponse( IReadOnlyList Persons ); public record SearchPerson( [property: JsonPropertyName("name")] string Name, [property: JsonPropertyName("person_id")] string PersonId );