Fix VS complaining about a duplicate type name

This commit is contained in:
Jordan Dominion
2024-09-10 23:34:27 -04:00
parent 74fa26fe02
commit b2fa1c035f
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -8,9 +8,9 @@ namespace Tgstation.Server.Host.GraphQL
public sealed class Query
{
/// <summary>
/// Gets the <see cref="Types.Swarm"/>.
/// Gets the <see cref="Types.ServerSwarm"/>.
/// </summary>
/// <returns>A new <see cref="Types.Swarm"/>.</returns>
public Types.Swarm Swarm() => new();
/// <returns>A new <see cref="Types.ServerSwarm"/>.</returns>
public Types.ServerSwarm Swarm() => new();
}
}
@@ -16,7 +16,7 @@ namespace Tgstation.Server.Host.GraphQL.Types
/// <summary>
/// Represents a tgstation-server swarm.
/// </summary>
public sealed class Swarm
public sealed class ServerSwarm
{
/// <summary>
/// Gets the <see cref="SwarmMetadata"/> for the swarm.
@@ -7,7 +7,7 @@ using Tgstation.Server.Host.System;
namespace Tgstation.Server.Host.GraphQL.Types
{
/// <summary>
/// Represents information that is constant across all servers in a <see cref="Swarm"/>.
/// Represents information that is constant across all servers in a <see cref="ServerSwarm"/>.
/// </summary>
public sealed class SwarmMetadata
{