19 lines
404 B
C#
19 lines
404 B
C#
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; }
|
|
} |