Creado apartir del commit b888de6c92056de294456f581a56e25e734d4ab7 de develop

This commit is contained in:
jrojas
2026-06-26 09:52:35 +02:00
commit 319fd3dfb0
746 changed files with 106610 additions and 0 deletions
@@ -0,0 +1,62 @@
using adas_core.Domain.Enums;
namespace adas_core.Domain.Models.MongoModels;
public class Step
{
public int? RotationTime { get; set; }
public string? Text { get; set; }
public string? Class { get; set; }
public UiFontData? DesignProperties { get; set; }
public DisplayConfigEnums.StepType? Type { get; set; } = DisplayConfigEnums.StepType.Standar;
}
public class UiFontData
{
public double? WidthStepBed { get; set; }
public double? HeightStepBed { get; set; }
public double? FontSizeValue { get; set; }
public double? FontSizeMediumValue { get; set; }
public double? FontSizeHeaderValue { get; set; }
public double? FontSizeLittleValue { get; set; }
public double? FontSizeMicroValue { get; set; }
public double? FontSizeNanoValue { get; set; }
public double? FontSizeTextValue { get; set; }
public double? FontSizeMediumTextValue { get; set; }
public double? FontSizeLittleTextValue { get; set; }
public double? FontSizeName { get; set; }
public double? FontSizeLittleName { get; set; }
public double? FontSizeUnit { get; set; }
public string? BorderColor { get; set; }
public string? BackGroundColor { get; set; }
public double? BoxMarginTop { get; set; }
public double? BoxMarginBot { get; set; }
public double? BoxMarginLeft { get; set; }
public double? BoxMarginRight { get; set; }
}