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