=== Summary: 675 files | 7 generated | 484 fresh | 4605 untracked | 4268 adopted | 355 marked | 466 validated-ok | 2+0 stale (sig+body) | 0 skipped | 0 failed | elapsed 11:08:11.442 (40091.44s) ===

This commit is contained in:
julian
2026-06-28 02:50:05 -07:00
parent a19fb90902
commit 586f02a2ca
654 changed files with 5260 additions and 0 deletions
@@ -3,6 +3,7 @@
/// <summary>
/// Represents a grant of access, typically used to convey permissions or authorization rights within a system.
/// </summary>
/// <!-- aidoc:v1 sig=5e5541d -->
public class AccessGrant
{
private int _expiresIn;
@@ -3,6 +3,7 @@
/// <summary>
/// Represents a patient entity within the system, encapsulating patient-related data and behavior.
/// </summary>
/// <!-- aidoc:v1 sig=902d058 -->
public class Patient
{
/// <summary>
@@ -6,6 +6,7 @@ namespace adas_core.Domain.Models.Recording;
/// <summary>
/// Represents a data container for recording-related information.
/// </summary>
/// <!-- aidoc:v1 sig=636c263 -->
public class RecordingData
{
public Patient? Patient { get; set; }
@@ -25,6 +26,7 @@ public class RecordingData
/// Generates a unique store identifier by combining the RoomId with the current timestamp formatted as yyyyMMdd-HHmmss, and assigns it to the Store property.
/// </summary>
/// <returns>A formatted store identifier string in the pattern "RoomId_yyyyMMdd-HHmmss".</returns>
/// <!-- aidoc:v1 sig=1148b1b body=f0bd2b9 -->
public string GenerateStore()
{
return Store = $"{RoomId}_{DateTime.Now:yyyyMMdd-HHmmss}";
@@ -34,6 +36,7 @@ public class RecordingData
/// Returns a compact JSON representation of the current object. If JSON serialization fails for any reason, falls back to the base <see cref="object.ToString"/> implementation.
/// </summary>
/// <returns>A JSON string produced by <see cref="JsonConvert.SerializeObject(object, Formatting)"/> with <see cref="Formatting.None"/>, or the result of the base <see cref="object.ToString"/> when serialization throws.</returns>
/// <!-- aidoc:v1 sig=d27f326 body=374af05 -->
public override string ToString()
{
try