< Summary

Information
Class: ValidateLib.TabularData.AnnotatedTabularDataModel.TableGroup
Assembly: validatelib.dll
File(s): C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\TabularData\AnnotatedTabularDataModel\TableGroup.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 12
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

MethodBlocks covered Blocks not covered
TableGroup()03

File(s)

C:\skola_karlovka\RP\code\csv-validator\CSV_Validator\ValidateLib\TabularData\AnnotatedTabularDataModel\TableGroup.cs

#LineLine coverage
 1using Newtonsoft.Json.Linq;
 2
 3namespace ValidateLib.TabularData.AnnotatedTabularDataModel
 4{
 5    public class TableGroup
 6    {
 07        public string? id { get; set; }
 08        public List<JToken>? notes { get; set; }
 09        public List<Table> tables { get; set; } = new List<Table>();
 10
 11    }
 12}