namespace adas_core.Domain.Models; public class ManualRecording { //[JsonProperty("patientId")] //public object PatientId { get; set; } //[JsonProperty("roomId")] //public int RoomId { get; set; } public MRecording? Recording { get; set; } } public class MRecording { public DateTime? StartRecordingTime { get; set; } public DateTime? StopRecordingTime { get; set; } }