7 lines
154 B
C#
7 lines
154 B
C#
namespace Elsa.Models;
|
|
|
|
public record PageArgs(int? Page, int? PageSize)
|
|
{
|
|
public int? Offset => Page * PageSize;
|
|
public int? Limit => PageSize;
|
|
} |