neon-sprawl/server/NeonSprawl.Server/Game/Factions/FactionStandingMutationOutc...

9 lines
298 B
C#

namespace NeonSprawl.Server.Game.Factions;
/// <summary>Result of <see cref="IFactionStandingStore.TryApplyStandingDelta"/> (NEO-135).</summary>
public readonly record struct FactionStandingMutationOutcome(
bool Success,
string? ReasonCode,
int PreviousStanding,
int NewStanding);