mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-22 04:27:19 +01:00
Fix VS complaining about a duplicate type name
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user