Creado apartir del commit b888de6c92056de294456f581a56e25e734d4ab7 de develop
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
namespace adas_core.Domain.Models;
|
||||
|
||||
public class PatientRecordingAlert : BasePatientObservation
|
||||
{
|
||||
public bool IsRecording { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
var items = ToListString();
|
||||
items.Add($"patientId: {PatientId}");
|
||||
if (!string.IsNullOrEmpty(Name)) items.Add($"source: {Name}");
|
||||
items.Add($"isRecording: {IsRecording}");
|
||||
items.Add($"time: {Time}");
|
||||
|
||||
return "PatientRecordingAlert[" + string.Join(", ", items) + "]";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user