6 lines
210 B
C#
6 lines
210 B
C#
using System.Text.Json.Serialization;
|
|
|
|
public record AcknowledgeAlertRequest(
|
|
[property: JsonPropertyName("note")] string? Note,
|
|
[property: JsonPropertyName("clinicianId")] string? ClinicianId = null);
|