namespace adas_core.Domain.Models; /// /// Represents a manual recording entity, typically used to capture or track recording operations initiated explicitly by a user or system. /// public class ManualRecording { //[JsonProperty("patientId")] //public object PatientId { get; set; } //[JsonProperty("roomId")] //public int RoomId { get; set; } public MRecording? Recording { get; set; } } /// /// Represents a recording entity, likely encapsulating data and behavior related to media or event capture and playback. /// /// /// This class serves as a model or container for recording-related operations within the application. /// public class MRecording { public DateTime? StartRecordingTime { get; set; } public DateTime? StopRecordingTime { get; set; } }