PageRenderTime 102ms CodeModel.GetById 29ms RepoModel.GetById 1ms app.codeStats 0ms

/Atlassian.Jira/WorkflowActions.cs

https://bitbucket.org/yyo/atlassian.net-sdk-v2.0
C# | 17 lines | 13 code | 1 blank | 3 comment | 0 complexity | b2c64a31f4970a4d1d874b7b02c43ad3 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Atlassian.Jira
  6. {
  7. /// <summary>
  8. /// Default workflow actions for a standard JIRA install.
  9. /// </summary>
  10. public static class WorkflowActions
  11. {
  12. public const string Resolve = "Resolve Issue";
  13. public const string Close = "Close Issue";
  14. public const string StartProgress = "Start Progress";
  15. }
  16. }