rama creada apartir de master en j
This commit is contained in:
@@ -5,12 +5,24 @@ namespace adas_core.Domain.Models.MongoModels;
|
||||
|
||||
#region HomeConfig
|
||||
|
||||
/// <summary>
|
||||
/// Represents a configuration class for defining the properties and settings of a card.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This class is intended to be used as a data container or settings holder for card-related configurations.
|
||||
/// </remarks>
|
||||
public class CardConfig
|
||||
{
|
||||
public ObjectId Id { get; set; }
|
||||
public List<RowCardConfig>? Rows { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents configuration settings for a row card component.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This type is intended to be used as a data container to define the visual or behavioral properties of a row card.
|
||||
/// </remarks>
|
||||
public class RowCardConfig
|
||||
{
|
||||
// Dynamic cells de nurse y Dynamic Obs de monitoring
|
||||
@@ -32,6 +44,9 @@ public class RowCardConfig
|
||||
public string? PaddingRight { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents a single cell, typically used as an individual unit within a larger structured data model such as a grid, table, or matrix.
|
||||
/// </summary>
|
||||
public class Cell
|
||||
{
|
||||
public ChartSettings? ChartSettings { get; set; }
|
||||
@@ -78,6 +93,9 @@ public class Cell
|
||||
public DisplayConfigEnums.DirectionEnum? Direction { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents the configuration settings used to control the appearance and behavior of a chart.
|
||||
/// </summary>
|
||||
public class ChartSettings
|
||||
{
|
||||
public LegendLayoutConfig? LegendLayoutConfig { get; set; }
|
||||
@@ -85,18 +103,30 @@ public class ChartSettings
|
||||
public decimal? ChartGrowPriority { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents configuration settings for a dialog, providing a centralized structure to manage dialog-related options and parameters.
|
||||
/// </summary>
|
||||
public class DialogConfig
|
||||
{
|
||||
public bool? IsDraggable { get; set; }
|
||||
public MedicalConfig? MedicalConfig { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents a configuration class for medical-related settings and parameters.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Serves as a container for medical configuration data, providing a centralized structure to manage and access medical settings within the application.
|
||||
/// </remarks>
|
||||
public class MedicalConfig
|
||||
{
|
||||
public bool HasFinalizeTime { get; set; }
|
||||
public bool HasStartTime { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents a list of icon values, providing a collection structure for managing and accessing icon-related data.
|
||||
/// </summary>
|
||||
public class IconValueList
|
||||
{
|
||||
public double? MinValue { get; set; }
|
||||
@@ -106,6 +136,9 @@ public class IconValueList
|
||||
public List<string>? IconList { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents the configuration settings for the home page or home component.
|
||||
/// </summary>
|
||||
public class HomeConfig
|
||||
{
|
||||
public string? MinColumnSize { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user