PageRenderTime 35ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/Atlassian.Jira/WorklogStrategy.cs

https://bitbucket.org/yyo/atlassian.net-sdk-v2.0
C# | 17 lines | 13 code | 1 blank | 3 comment | 0 complexity | 26caa5e4f8eeb9358ed6b885e244a9fd 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. /// The worklog time remaining strategy
  9. /// </summary>
  10. public enum WorklogStrategy
  11. {
  12. AutoAdjustRemainingEstimate,
  13. RetainRemainingEstimate,
  14. NewRemainingEstimate
  15. }
  16. }