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