All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 1m45s
14 lines
329 B
C#
14 lines
329 B
C#
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
|
|
); |