< Summary

Information
Class: Nabs.Ui.Abstractions.BlazorUIGroupAttribute
Assembly: Nabs.Ui.Abstractions
File(s): /home/runner/work/Nabs/Nabs/src/Nabs.Ui.Abstractions/BlazorUIHintAttribute.cs
Tag: 90_14636759620
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 25
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
.ctor(...)100%11100%

File(s)

/home/runner/work/Nabs/Nabs/src/Nabs.Ui.Abstractions/BlazorUIHintAttribute.cs

#LineLine coverage
 1namespace Nabs.Ui.Abstractions;
 2
 3public class BlazorUIHintAttribute : Attribute
 4{
 5    public BlazorUIHintAttribute(string uiComponent, string uiLabel)
 6    {
 7        UIComponent = uiComponent;
 8        UiLabel = uiLabel;
 9    }
 10
 11    public string UIComponent { get; }
 12    public string UiLabel { get; }
 13}
 14
 15public class BlazorUIGroupAttribute : Attribute
 16{
 117    public BlazorUIGroupAttribute(string groupComponent, string uiTitle)
 18    {
 19        GroupComponent = groupComponent;
 20        UiTitle = uiTitle;
 121    }
 22
 23    public string GroupComponent { get; }
 24    public string UiTitle { get; }
 25}