/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
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace Atlassian.Jira
- {
- /// <summary>
- /// Default workflow actions for a standard JIRA install.
- /// </summary>
- public static class WorkflowActions
- {
- public const string Resolve = "Resolve Issue";
- public const string Close = "Close Issue";
- public const string StartProgress = "Start Progress";
- }
- }