diff --git a/Content.Benchmarks/EntityManagerGetAllComponents.cs b/Content.Benchmarks/EntityManagerGetAllComponents.cs
index 25107662c7..e81e09c7a9 100644
--- a/Content.Benchmarks/EntityManagerGetAllComponents.cs
+++ b/Content.Benchmarks/EntityManagerGetAllComponents.cs
@@ -89,7 +89,6 @@ namespace Content.Benchmarks
private class DummyComponent : Component
{
- public override string Name => "Dummy";
}
}
}
diff --git a/Content.Client/Animations/AnimationsTestComponent.cs b/Content.Client/Animations/AnimationsTestComponent.cs
index 92100ce33e..ad9a72f81a 100644
--- a/Content.Client/Animations/AnimationsTestComponent.cs
+++ b/Content.Client/Animations/AnimationsTestComponent.cs
@@ -11,8 +11,6 @@ namespace Content.Client.Animations
[RegisterComponent]
public sealed class AnimationsTestComponent : Component
{
- public override string Name => "AnimationsTest";
-
protected override void Initialize()
{
base.Initialize();
diff --git a/Content.Client/CharacterInfo/Components/CharacterInfoComponent.cs b/Content.Client/CharacterInfo/Components/CharacterInfoComponent.cs
index 37d0420341..bc9e7b7368 100644
--- a/Content.Client/CharacterInfo/Components/CharacterInfoComponent.cs
+++ b/Content.Client/CharacterInfo/Components/CharacterInfoComponent.cs
@@ -13,8 +13,6 @@ namespace Content.Client.CharacterInfo.Components
[RegisterComponent]
public sealed class CharacterInfoComponent : Component, ICharacterUI
{
- public override string Name => "CharacterInfo";
-
public CharacterInfoControl Control = default!;
public Control Scene { get; set; } = default!;
diff --git a/Content.Client/CharacterInterface/CharacterInterfaceComponent.cs b/Content.Client/CharacterInterface/CharacterInterfaceComponent.cs
index fd3d7e96cf..033eda82d2 100644
--- a/Content.Client/CharacterInterface/CharacterInterfaceComponent.cs
+++ b/Content.Client/CharacterInterface/CharacterInterfaceComponent.cs
@@ -14,8 +14,6 @@ namespace Content.Client.CharacterInterface
[RegisterComponent]
public class CharacterInterfaceComponent : Component
{
- public override string Name => "Character Interface Component";
-
///
/// Window to hold each of the character interfaces
///
diff --git a/Content.Client/Clickable/ClickableComponent.cs b/Content.Client/Clickable/ClickableComponent.cs
index 6744a819ba..564df8a706 100644
--- a/Content.Client/Clickable/ClickableComponent.cs
+++ b/Content.Client/Clickable/ClickableComponent.cs
@@ -14,8 +14,6 @@ namespace Content.Client.Clickable
[RegisterComponent]
public sealed class ClickableComponent : Component
{
- public override string Name => "Clickable";
-
[Dependency] private readonly IClickMapManager _clickMapManager = default!;
[ViewVariables] [DataField("bounds")] private DirBoundData? _data;
diff --git a/Content.Client/Clothing/ClothingComponent.cs b/Content.Client/Clothing/ClothingComponent.cs
index c868938dd4..1dbaf33123 100644
--- a/Content.Client/Clothing/ClothingComponent.cs
+++ b/Content.Client/Clothing/ClothingComponent.cs
@@ -13,8 +13,6 @@ namespace Content.Client.Clothing
[NetworkedComponent()]
public class ClothingComponent : ItemComponent
{
- public override string Name => "Clothing";
-
[ViewVariables(VVAccess.ReadWrite)]
[DataField("femaleMask")]
public FemaleClothingMask FemaleMask { get; } = FemaleClothingMask.UniformFull;
diff --git a/Content.Client/Construction/ConstructionGhostComponent.cs b/Content.Client/Construction/ConstructionGhostComponent.cs
index f15f23fd38..1d10a5dea0 100644
--- a/Content.Client/Construction/ConstructionGhostComponent.cs
+++ b/Content.Client/Construction/ConstructionGhostComponent.cs
@@ -7,8 +7,6 @@ namespace Content.Client.Construction
[RegisterComponent]
public class ConstructionGhostComponent : Component
{
- public override string Name => "ConstructionGhost";
-
[ViewVariables] public ConstructionPrototype? Prototype { get; set; }
[ViewVariables] public int GhostId { get; set; }
}
diff --git a/Content.Client/Damage/DamageVisualizerComponent.cs b/Content.Client/Damage/DamageVisualizerComponent.cs
index 4e0e404ed3..6230ecb571 100644
--- a/Content.Client/Damage/DamageVisualizerComponent.cs
+++ b/Content.Client/Damage/DamageVisualizerComponent.cs
@@ -13,8 +13,6 @@ namespace Content.Client.Damage
[RegisterComponent]
public class DamageVisualizerDataComponent : Component
{
- public override string Name => "DamageVisualizerData";
-
public List