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