File

src/app/models/page.model.ts

Description

Gestione della paginazione

Index

Properties

Properties

count
count: number
Type : number

Numero elementi

next
next: string
Type : string

indirizzo Prossima pagina

previous
previous: string
Type : string

Indirizzo pagina precedente

results
results: T[]
Type : T[]

Risultati della pagina

export class Page<T> {
  /**
   * Numero elementi
   */
  count: number;
  /**
   * indirizzo Prossima pagina
   */
  next: string;

  /**
   * Indirizzo pagina precedente
   */
  previous: string;

  /**
   * Risultati della pagina
   */
  results: T[];
}

results matching ""

    No results matching ""