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(); }