From 4e18203aafd89558e25439cf35ab79d75931f3fb Mon Sep 17 00:00:00 2001 From: gluesniffler <159397573+gluesniffler@users.noreply.github.com> Date: Sat, 21 Sep 2024 18:43:05 -0400 Subject: [PATCH] Update Content.Shared/ShortConstruction/ShortConstructionComponent.cs Co-authored-by: VMSolidus Signed-off-by: gluesniffler <159397573+gluesniffler@users.noreply.github.com> --- .../ShortConstruction/ShortConstructionComponent.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Shared/ShortConstruction/ShortConstructionComponent.cs b/Content.Shared/ShortConstruction/ShortConstructionComponent.cs index 453829c7be5..dedf8605bdb 100644 --- a/Content.Shared/ShortConstruction/ShortConstructionComponent.cs +++ b/Content.Shared/ShortConstruction/ShortConstructionComponent.cs @@ -26,13 +26,13 @@ public sealed partial class ShortConstructionEntry [DataDefinition] public sealed partial class ShortConstructionCategory { - [DataField("name")] + [DataField] public string Name { get; set; } = string.Empty; - [DataField("icon")] + [DataField] public SpriteSpecifier Icon { get; set; } = default!; - [DataField("entries")] + [DataField] public List Entries { get; set; } = new(); }