10 lines
265 B
C#
10 lines
265 B
C#
namespace Kreta.Client.Jira.Model.Response
|
|
{
|
|
public abstract class JiraRequestBase
|
|
{
|
|
public int Size { get; set; }
|
|
public int Start { get; set; }
|
|
public int Limit { get; set; }
|
|
public bool IsLastPage { get; set; }
|
|
}
|
|
}
|