< Summary

Class:DCLServices.Lambdas.PaginatedResponse
Assembly:LambdasService
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLServices/Lambdas/PaginatedResponse.cs
Covered lines:1
Uncovered lines:2
Coverable lines:3
Total lines:17
Line coverage:33.3% (1 of 3)
Covered branches:0
Total branches:0
Covered methods:1
Total methods:3
Method coverage:33.3% (1 of 3)

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLServices/Lambdas/PaginatedResponse.cs

#LineLine coverage
 1using Newtonsoft.Json;
 2using System;
 3
 4namespace DCLServices.Lambdas
 5{
 6    [Serializable]
 7    public abstract class PaginatedResponse
 8    {
 9        [JsonProperty] protected internal int pageNum;
 10        [JsonProperty] protected internal int pageSize;
 11        [JsonProperty] protected internal int totalAmount;
 12
 013        public int PageNum => pageNum;
 014        public int PageSize => pageSize;
 615        public int TotalAmount => totalAmount;
 16    }
 17}

Methods/Properties

PageNum()
PageSize()
TotalAmount()