10 lines
315 B
C#
10 lines
315 B
C#
namespace NeonSprawl.Server.Game.Factions;
|
|
|
|
/// <summary>Result of <see cref="ReputationOperations.TryApplyDelta"/> (NEO-136).</summary>
|
|
public readonly record struct ReputationApplyOutcome(
|
|
bool Success,
|
|
string? ReasonCode,
|
|
int PreviousStanding,
|
|
int NewStanding,
|
|
ReputationDeltaRow? AuditRow);
|