=== 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
@@ -7,6 +7,7 @@ namespace adas_core.Domain.Models.SignalR;
/// <summary>
/// Represents a message, typically used for communication or data transfer between components.
/// </summary>
/// <!-- aidoc:v1 sig=efb0732 -->
public class Message
{
public long IdMessage { get; set; }
@@ -30,6 +31,7 @@ public class Message
/// Returns a JSON representation of the current object, falling back to the default <see cref="object.ToString"/> implementation if serialization fails.
/// </summary>
/// <returns>A JSON-formatted string describing the object, or the result of the base <see cref="object.ToString"/> method if serialization throws an exception.</returns>
/// <!-- aidoc:v1 sig=483eaf3 body=acdb440 -->
public override string? ToString()
{
try
@@ -9,6 +9,7 @@ namespace adas_core.Domain.Models.SignalR;
/// <summary>
/// Represents data associated with a message, providing a structure for storing and transporting message-related information.
/// </summary>
/// <!-- aidoc:v1 sig=cec5c86 -->
public class MessageData
{
public bool IsDemo { get; set; } = false;
@@ -5,6 +5,7 @@ namespace adas_core.Domain.Models.SignalR;
/// <summary>
/// Represents a recording, encapsulating data and behavior associated with a captured event or media.
/// </summary>
/// <!-- aidoc:v1 sig=962065d -->
public class Recording
{
public string Id { get; set; } = null!;