< Summary - SonghayCore

Information
Class: Songhay.Models.PagedResult
Assembly: SonghayCore
File(s): /home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/PagedResult.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 17
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Method coverage is only available for sponsors.

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_Metadata()100%10%
get_PagedResultSet()100%10%

File(s)

/home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/PagedResult.cs

#LineLine coverage
 1namespace Songhay.Models;
 2
 3/// <summary>
 4/// Defines a paged set of data.
 5/// </summary>
 6public class PagedResult
 7{
 8    /// <summary>
 9    /// Gets or sets the metadata.
 10    /// </summary>
 011    public PagedResultMeta? Metadata { get; set; }
 12
 13    /// <summary>
 14    /// Gets or sets the paged result set.
 15    /// </summary>
 016    public IEnumerable<DisplayItemModel> PagedResultSet { get; set; } = Enumerable.Empty<DisplayItemModel>();
 17}