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