1 |
f053c1b6
|
Vojtěch Bartička
|
using System;
|
2 |
|
|
using System.Collections.Generic;
|
3 |
|
|
using System.Linq;
|
4 |
|
|
using System.Text;
|
5 |
|
|
using System.Threading.Tasks;
|
6 |
|
|
|
7 |
|
|
namespace Models.Documents;
|
8 |
|
|
|
9 |
|
|
public class DocumentListResponse
|
10 |
|
|
{
|
11 |
|
|
/** Total number of results */
|
12 |
|
|
public int TotalCount { get; set; }
|
13 |
|
|
/** Number of pages */
|
14 |
|
|
public int PageCount { get; set; }
|
15 |
|
|
/** Current page index */
|
16 |
|
|
public int PageIndex { get; set; }
|
17 |
|
|
|
18 |
|
|
public List<DocumentListInfo> Documents { get; set; } = new();
|
19 |
|
|
}
|