16 lines
452 B
C#
16 lines
452 B
C#
namespace NeonSprawl.Server.Game.Gathering;
|
|
|
|
/// <summary>JSON body for <c>POST /game/__dev/resource-node-fixture</c> (Bruno/manual QA).</summary>
|
|
public sealed class ResourceNodeFixtureRequest
|
|
{
|
|
public const int CurrentSchemaVersion = 1;
|
|
|
|
public int SchemaVersion { get; init; }
|
|
}
|
|
|
|
/// <summary>POST response for resource-node fixture apply.</summary>
|
|
public sealed class ResourceNodeFixtureResponse
|
|
{
|
|
public bool Applied { get; init; }
|
|
}
|