10 lines
323 B
C#
10 lines
323 B
C#
namespace NeonSprawl.Server.Game.Factions;
|
|
|
|
/// <summary>Stable source-kind values for <see cref="ReputationDeltaRow"/> (NEO-135).</summary>
|
|
public static class ReputationDeltaSourceKinds
|
|
{
|
|
public const string QuestCompletion = "quest_completion";
|
|
|
|
public const string ContractCompletion = "contract_completion";
|
|
}
|