namespace pulse
{
/// <summary>
/// Reward point values.
/// </summary>
public static class Rewards
{
/// <summary>
/// The bug report.
/// </summary>
public const string BugReport = "BugReport";
/// <summary>
/// The collaboration.
/// </summary>
public const string Collaboration = "Collaboration";
/// <summary>
/// The created work.
/// </summary>
public const string CreatedWork = "CreatedWork";
/// <summary>
/// The due diligence.
/// </summary>
public const string DueDiligence = "DueDiligence";
/// <summary>
/// The finish work.
/// </summary>
public const string FinishWork = "FinishWork";
/// <summary>
/// The house cleaning.
/// </summary>
public const string HouseCleaning = "HouseCleaning";
/// <summary>
/// The participation.
/// </summary>
public const string Participation = "Participation";
/// <summary>
/// The taking ownership.
/// </summary>
public const string TakingOwnership = "TakingOwnership";
/// <summary>
/// The verbosity.
/// </summary>
public const string Verbosity = "Verbosity";
}
}
|