From 5c79946d57372d0f8ef84243c304403cbb8b53db Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Thu, 19 Mar 2026 15:25:10 -0400 Subject: [PATCH] fix(backend): resolve nullable build warnings --- apps/backend/Simulation/Model/ShipRuntimeModels.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/backend/Simulation/Model/ShipRuntimeModels.cs b/apps/backend/Simulation/Model/ShipRuntimeModels.cs index a5a7724..4b55df9 100644 --- a/apps/backend/Simulation/Model/ShipRuntimeModels.cs +++ b/apps/backend/Simulation/Model/ShipRuntimeModels.cs @@ -19,7 +19,7 @@ public sealed class ShipRuntime public float ActionTimer { get; set; } public Dictionary Inventory { get; } = new(StringComparer.Ordinal); - public string DockedStationId { get; set; } + public string? DockedStationId { get; set; } public int? AssignedDockingPadIndex { get; set; } public string? CommanderId { get; set; } public string? PolicySetId { get; set; }