< Summary

Information
Class: UIBlazor.Models.AiModelItem
Assembly: UIBlazor
File(s): /home/runner/work/InvAit/InvAit/UIBlazor/Models/AiModelItem.cs
Tag: 14_22728831704
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
Total lines: 9
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
.ctor(...)100%210%
get_Id()100%210%
get_Object()100%210%
get_Created()100%210%
get_OwnedBy()100%210%

File(s)

/home/runner/work/InvAit/InvAit/UIBlazor/Models/AiModelItem.cs

#LineLine coverage
 1using System.Text.Json.Serialization;
 2
 3namespace UIBlazor.Models;
 4
 05public record AiModelItem(
 06    string Id,
 07    string Object,
 08    int Created,
 09    [property: JsonPropertyName("owned_by")] string OwnedBy);