< Summary

Information
Class: Elsa.Api.Client.Shared.Models.LinkedEntity
Assembly: Elsa.Api.Client
File(s): /home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Shared/Models/LinkedEntity.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 12
Line coverage: 100%
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_Links()100%11100%

File(s)

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

#LineLine coverage
 1namespace Elsa.Api.Client.Shared.Models;
 2
 3/// <summary>
 4/// Represents an entity that is linked, meaning it contains links used in the context of HATEOAS.
 5/// </summary>
 6public class LinkedEntity : VersionedEntity
 7{
 8    /// <summary>
 9    /// A list of links that with the possible actions used in the context of HATEOAS.
 10    /// </summary>
 111    public Link[]? Links { get; set; }
 12}

Methods/Properties

get_Links()