15 lines
594 B
C#
15 lines
594 B
C#
using adas_core.Domain.Models.Filter;
|
|
|
|
namespace adas_core.Domain.Models.DTO;
|
|
|
|
/// <summary>
|
|
/// Represents a data transfer object (DTO) that encapsulates a pair of pagination-related values for transport between layers or services.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Typically used to convey paired pagination metadata, such as a page number together with a page size or total count, in request or response payloads.
|
|
/// </remarks>
|
|
public class PaginationPairDto
|
|
{
|
|
public PaginationFilter ListFilter { get; set; } = new();
|
|
public PaginationFilter OptionFilter { get; set; } = new();
|
|
} |