/Atlassian.Jira/Linq/JqlData.cs

https://bitbucket.org/yyo/atlassian.net-sdk-v2.0 · C# · 15 lines · 14 code · 1 blank · 0 comment · 0 complexity · 35a35807da2940fd901ab66cd06d3ddd MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Atlassian.Jira.Linq
  6. {
  7. public class JqlData
  8. {
  9. public string Expression { get; set; }
  10. public int? MaxResults { get; set; }
  11. public bool ProcessCount { get; set; }
  12. public int StartAt { get; set; }
  13. }
  14. }