< Summary

Information
Class: Elsa.Api.Client.Shared.Models.PagedListResponse<T>
Assembly: Elsa.Api.Client
File(s): /home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Shared/Models/PagedListResponse.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 11
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_Items()100%210%
get_TotalCount()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Shared/Models/PagedListResponse.cs

#LineLine coverage
 1namespace Elsa.Api.Client.Shared.Models;
 2
 3/// <summary>
 4/// Represents a generic paged list response that offers a unified format for returning paged list of things from API en
 5/// </summary>
 6/// <typeparam name="T">The type of the items.</typeparam>
 7public class PagedListResponse<T> : LinkedEntity
 8{
 09    public ICollection<T> Items { get; set; } = default!;
 010    public long TotalCount { get; set; }
 11}

Methods/Properties

get_Items()
get_TotalCount()