All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 1m45s
17 lines
416 B
C#
17 lines
416 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SfeduSchedule.DTO.Requests;
|
|
|
|
public record ModeusSearchPersonRequest(
|
|
[property: JsonPropertyName("fullName")]
|
|
string FullName = "",
|
|
|
|
[property: JsonPropertyName("sort")]
|
|
string Sort = "+fullName",
|
|
|
|
[property: JsonPropertyName("size")]
|
|
int Size = 10,
|
|
|
|
[property: JsonPropertyName("page")]
|
|
int Page = 0
|
|
); |