/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
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace Atlassian.Jira.Linq
- {
- public class JqlData
- {
- public string Expression { get; set; }
- public int? MaxResults { get; set; }
- public bool ProcessCount { get; set; }
- public int StartAt { get; set; }
- }
- }