aswi20220x00-gitlab/Backend/Models/Documents/DocumentListResponse.cs @ 24e1c89d
1 |
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 |
}
|
20 |
|
- « Předchozí
- 1
- …
- 3
- 4
- 5
- Další »