Add support for hiding additional properties in Chassis asset model
Some checks failed
Build / build (push) Failing after 11s

This commit is contained in:
2025-06-08 15:03:59 +02:00
parent 51820545a0
commit 72c006f520

View File

@@ -34,14 +34,17 @@ public class ChassisAsset implements Asset
@Description("The number of 3.5\" drive bays in the chassis.")
@Property("3.5\" Bays")
@HideInOverview
private Long bay3_5Count;
@Description("The number of internal 3.5\" drive bays in the chassis.")
@Property("Internal 3.5\" Bays")
@HideInOverview
private Long internalBay3_5Count;
@Description("The number of 2.5\" drive bays in the chassis.")
@Property("2.5\" Bays")
@HideInOverview
private Long bay2_5Count;
@Description("The number of expansion slots in the chassis.")