=== 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:
@@ -3,6 +3,7 @@ namespace adas_core.Domain.Models.DTO.Display;
|
||||
/// <summary>
|
||||
/// Represents a data transfer object (DTO) that encapsulates color configuration settings for transferring color-related data between application layers or systems.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=bc3afa0 -->
|
||||
public class ColorConfigDto
|
||||
{
|
||||
public LevelColors? Level { get; set; }
|
||||
@@ -18,6 +19,7 @@ public class ColorConfigDto
|
||||
/// <summary>
|
||||
/// Represents configuration settings that define the visual appearance, such as colors, themes, or styling preferences.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=070355d -->
|
||||
public class AppearanceSettings
|
||||
{
|
||||
public string? TextColor { get; set; }
|
||||
@@ -36,6 +38,7 @@ public class ColorConfigDto
|
||||
/// <remarks>
|
||||
/// This type is intended to encapsulate the visual color configuration associated with the numeric portion of a status box display.
|
||||
/// </remarks>
|
||||
/// <!-- aidoc:v1 sig=41d803c -->
|
||||
public class StatusBoxNumberColors
|
||||
{
|
||||
public AppearanceSettings? Reserved { get; set; }
|
||||
@@ -50,6 +53,7 @@ public class ColorConfigDto
|
||||
/// <summary>
|
||||
/// Provides a centralized set of color values used throughout the therapy-related user interface or visual components.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=550c282 -->
|
||||
public class TherapyColors
|
||||
{
|
||||
public AppearanceSettings? Default { get; set; }
|
||||
@@ -61,6 +65,7 @@ public class ColorConfigDto
|
||||
/// <summary>
|
||||
/// Provides a collection of color values intended for use in test scenarios.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=b0381d4 -->
|
||||
public class TestColors
|
||||
{
|
||||
public AppearanceSettings? Default { get; set; }
|
||||
@@ -72,6 +77,7 @@ public class ColorConfigDto
|
||||
/// <summary>
|
||||
/// Represents a collection of color definitions used to visually represent procedures.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=676d773 -->
|
||||
public class ProcedureColors
|
||||
{
|
||||
public AppearanceSettings? Default { get; set; }
|
||||
@@ -86,6 +92,7 @@ public class ColorConfigDto
|
||||
/// <remarks>
|
||||
/// Used to centralize color definitions related to level display, allowing consistent theming across level-related UI elements.
|
||||
/// </remarks>
|
||||
/// <!-- aidoc:v1 sig=f693cfc -->
|
||||
public class LevelColors
|
||||
{
|
||||
public string? Level1 { get; set; }
|
||||
@@ -98,6 +105,7 @@ public class ColorConfigDto
|
||||
/// <summary>
|
||||
/// Represents a collection of predefined text color values or definitions for styling text output.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=d12f899 -->
|
||||
public class TextColors
|
||||
{
|
||||
public string? Normal { get; set; }
|
||||
@@ -110,6 +118,7 @@ public class ColorConfigDto
|
||||
/// <summary>
|
||||
/// Provides a set of predefined color values used for rendering arrows in charts or visualizations.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=abbea19 -->
|
||||
public class ArrowColors
|
||||
{
|
||||
public string? Normal { get; set; }
|
||||
@@ -121,6 +130,7 @@ public class ColorConfigDto
|
||||
/// <summary>
|
||||
/// Represents a collection or definition of colors used to visually style an indicator.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=5c596cd -->
|
||||
public class IndicatorColors
|
||||
{
|
||||
public string? Empty { get; set; }
|
||||
@@ -134,6 +144,7 @@ public class ColorConfigDto
|
||||
/// <summary>
|
||||
/// Represents a collection or definition of colors used for rendering graphs and chart elements.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=83d1667 -->
|
||||
public class GraphColors
|
||||
{
|
||||
public string? Normal { get; set; }
|
||||
|
||||
@@ -7,6 +7,7 @@ namespace adas_core.Domain.Models.DTO.Display;
|
||||
/// <summary>
|
||||
/// Represents a data transfer object used to create a new display configuration.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=2d892f7 -->
|
||||
public class CreateDisplayConfigDto
|
||||
{
|
||||
public DisplayConfigEnums.DisplayType Type { get; set; } =
|
||||
@@ -20,6 +21,7 @@ public class CreateDisplayConfigDto
|
||||
/// <summary>
|
||||
/// Represents a data transfer object used to create a display configuration card.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=887faf2 -->
|
||||
public class CreateDisplayConfigCardDto
|
||||
{
|
||||
public CardConfig? CardConfig { get; set; }
|
||||
|
||||
@@ -8,6 +8,7 @@ namespace adas_core.Domain.Models.DTO.Display;
|
||||
/// <summary>
|
||||
/// Represents a data transfer object for display configuration settings.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=99d0425 -->
|
||||
public class DisplayConfigDto
|
||||
{
|
||||
public ObjectId Id { get; set; }
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
/// <remarks>
|
||||
/// This DTO is used to transfer display configuration settings along with their associated location data between application layers.
|
||||
/// </remarks>
|
||||
/// <!-- aidoc:v1 sig=fa37034 -->
|
||||
public class DisplayConfigLocationDto
|
||||
{
|
||||
public string? DisplayName { get; set; }
|
||||
|
||||
@@ -6,6 +6,7 @@ namespace adas_core.Domain.Models.DTO.Display;
|
||||
/// <summary>
|
||||
/// Represents a summary of display configuration settings, providing a consolidated view of display-related parameters.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=c5b0fcb -->
|
||||
public class DisplayConfigSummary
|
||||
{
|
||||
public ObjectId Id { get; set; }
|
||||
|
||||
@@ -6,6 +6,7 @@ namespace adas_core.Domain.Models.DTO.Display;
|
||||
/// <summary>
|
||||
/// Represents a minimal data transfer object that encapsulates a subset of fields from a <see cref="MongoModels.Display"/> model for lightweight serialization or transfer.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=42b5500 -->
|
||||
public class DisplayMinimalDto(MongoModels.Display display)
|
||||
{
|
||||
public ObjectId Id { get; set; } = display.Id;
|
||||
|
||||
@@ -5,6 +5,7 @@ namespace adas_core.Domain.Models.DTO.Display;
|
||||
/// <summary>
|
||||
/// Represents a data transfer object used for displaying nurse information, extending the base display configuration functionality provided by <see cref="DisplayConfigDto"/>.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=84008b2 -->
|
||||
public class DisplayNurseDto : DisplayConfigDto
|
||||
{
|
||||
public List<BannerItem>? HomeBanner { get; set; }
|
||||
|
||||
@@ -8,6 +8,7 @@ namespace adas_core.Domain.Models.DTO.Display;
|
||||
/// <remarks>
|
||||
/// This DTO is intended for transferring presentation data together with the permissions required to view or interact with it.
|
||||
/// </remarks>
|
||||
/// <!-- aidoc:v1 sig=2f55888 -->
|
||||
public class DisplayWithPermissionsDto
|
||||
{
|
||||
public DisplayPermissionTypes? Permissions { get; set; }
|
||||
|
||||
@@ -5,6 +5,7 @@ namespace adas_core.Domain.Models.DTO.Display;
|
||||
/// <summary>
|
||||
/// Represents a data transfer object that provides a minimal representation of a display list for transfer between application layers.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=9405a12 -->
|
||||
public class MinimalDisplayListDto
|
||||
{
|
||||
public List<MinimalDisplaySection> DisplayNurse { get; set; } = [];
|
||||
|
||||
@@ -6,6 +6,7 @@ namespace adas_core.Domain.Models.DTO.Display;
|
||||
/// <summary>
|
||||
/// Represents a data transfer object for a smart display configuration, extending the base display configuration with additional smart display properties.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=653991f -->
|
||||
public class SmartDisplayDto : DisplayConfigDto
|
||||
{
|
||||
public bool? HasCameras { get; set; }
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
/// <remarks>
|
||||
/// This DTO is intended to carry the necessary information to modify the name of an existing display configuration entity.
|
||||
/// </remarks>
|
||||
/// <!-- aidoc:v1 sig=4ec9b5b -->
|
||||
public class UpdateDisplayConfigNameDto
|
||||
{
|
||||
public string DisplayName { get; set; } = string.Empty;
|
||||
|
||||
Reference in New Issue
Block a user