-
Notifications
You must be signed in to change notification settings - Fork 9
/
Program.cs
635 lines (565 loc) · 23.2 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
using System.Diagnostics;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Text;
using System.Text.RegularExpressions;
using Log73;
using static Log73.Console;
using YamlDotNet.Serialization;
using YamlDotNet.Serialization.NamingConventions;
// ReSharper disable ClassNeverInstantiated.Global
// ReSharper disable UnusedAutoPropertyAccessor.Global
#pragma warning disable CS8618
Options.UseAnsi = false;
if (Environment.GetEnvironmentVariable("JAN_DEBUG") == "1")
Options.LogLevel = LogLevel.Debug;
var versionString = Assembly.GetEntryAssembly()?
.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?
.InformationalVersion ?? Assembly.GetExecutingAssembly().GetName().Version?.ToString();
WriteLine($"DocFxMarkdownGen v{versionString} running...");
var xrefRegex = new Regex("<xref href=\"(.+?)\" data-throw-if-not-resolved=\"false\"></xref>", RegexOptions.Compiled);
var langwordXrefRegex =
new Regex("<xref uid=\"langword_csharp_.+?\" name=\"(.+?)\" href=\"\"></xref>", RegexOptions.Compiled);
var codeBlockRegex = new Regex("<pre><code class=\"lang-csharp\">((.|\n)+?)</code></pre>", RegexOptions.Compiled);
var codeRegex = new Regex("<code>(.+?)</code>", RegexOptions.Compiled);
var linkRegex = new Regex("<a href=\"(.+?)\">(.+?)</a>", RegexOptions.Compiled);
var brRegex = new Regex("<br */?>", RegexOptions.Compiled);
var yamlDeserializer = new DeserializerBuilder().WithNamingConvention(CamelCaseNamingConvention.Instance)
.IgnoreUnmatchedProperties().Build();
var config =
yamlDeserializer.Deserialize<Config>(
await File.ReadAllTextAsync(Environment.GetEnvironmentVariable("DFMG_CONFIG") ?? "./config.yaml"));
if (Environment.GetEnvironmentVariable("DFMG_OUTPUT_PATH") is { } outputPath and not "")
{
config.OutputPath = outputPath;
Info($"Output path overriden by env: {config.OutputPath}");
}
if (Environment.GetEnvironmentVariable("DFMG_YAML_PATH") is { } yamlPath and not "")
{
config.YamlPath = yamlPath;
Info($"YAML path overriden by env: {config.YamlPath}");
}
if (Directory.Exists(config.OutputPath))
Directory.Delete(config.OutputPath, true);
Directory.CreateDirectory(config.OutputPath);
var stopwatch = Stopwatch.StartNew();
List<Item> items = new();
#region read all yaml and create directory structure
await Parallel.ForEachAsync(Directory.GetFiles(config.YamlPath, "*.yml"), async (file, _) =>
{
if (file.EndsWith("toc.yml"))
return;
Debug(file);
var obj = yamlDeserializer.Deserialize<DocFxFile>(await File.ReadAllTextAsync(file));
lock (items)
{
items.AddRange(obj.Items);
}
});
Info($"Read all YAML in {stopwatch.ElapsedMilliseconds}ms.");
// create namespace directories
Parallel.ForEach(items, (item, _) =>
{
if (item.Type == "Namespace")
{
Debug(item.Type + ": " + item.Name);
var dir = Path.Combine(config.OutputPath, item.Name);
Directory.CreateDirectory(dir);
}
});
#endregion
// util methods
static string GetTypePathPart(string type)
=> type switch
{
"Class" => "Classes",
"Struct" => "Structs",
"Interface" => "Interfaces",
"Enum" => "Enums",
"Delegate" => "Delegates",
_ => throw new ArgumentOutOfRangeException(nameof(type), type, null),
};
Item[] GetProperties(string uid)
=> items.Where(i => i.Parent == uid && i.Type == "Property").ToArray();
Item[] GetFields(string uid)
=> items.Where(i => i.Parent == uid && i.Type == "Field").ToArray();
Item[] GetMethods(string uid)
=> items.Where(i => i.Parent == uid && i.Type == "Method").ToArray();
Item[] GetEvents(string uid)
=> items.Where(i => i.Parent == uid && i.Type == "Event").ToArray();
string? HtmlEscape(string? str)
=> str?.Replace("<", "<").Replace(">", ">");
string? FileEscape(string? str)
=> str?.Replace("<", "`").Replace(">", "`").Replace(" ", "%20");
string SourceLink(Item item)
=> item.Source?.Remote == null
? ""
: $"###### [View Source]({item.Source.Remote.Repo}/blob/{item.Source.Remote.Branch}/{item.Source.Remote.Path}#L{item.Source.StartLine + 1})";
void Declaration(StringBuilder str, Item item)
{
str.AppendLine(SourceLink(item));
if (item.Syntax != null)
{
str.AppendLine("```csharp title=\"Declaration\"");
str.AppendLine(item.Syntax.Content);
str.AppendLine("```");
}
}
Info("Generating and writing markdown...");
// if grouping types, count types in each namespace, for minCount
// we have to make it a local method like this because of the ref there(cannot be in async method)
static void DoTypeCounts(List<Item> items, Dictionary<string, int> typeCounts)
{
foreach (var item in items)
{
if (item.Type is not ("Class" or "Interface" or "Enum" or "Struct" or "Delegate")) continue;
ref var count = ref CollectionsMarshal.GetValueRefOrAddDefault(typeCounts, item.Namespace, out var exists);
if (exists)
count++;
else
count = 1;
}
}
Dictionary<string, int>? typeCounts = null;
if (config.TypesGrouping?.Enabled ?? false)
{
typeCounts = new();
DoTypeCounts(items, typeCounts);
}
bool NamespaceHasTypeGrouping(string @namespace)
=> typeCounts is not null && typeCounts.TryGetValue(@namespace, out var count) &&
count >= config.TypesGrouping!.MinCount;
string Link(string uid, bool linkFromGroupedType, bool nameOnly = false, bool linkFromIndex = false)
{
var reference = items.FirstOrDefault(i => i.Uid == uid);
if (uid.Contains('{') && reference == null)
{
// try to resolve single type argument references
var replaced = uid.Replace(uid[uid.IndexOf('{')..(uid.LastIndexOf('}') + 1)], "`1");
reference = items.FirstOrDefault(i => i.Uid == replaced);
}
if (reference == null)
// todo: try to resolve to msdn links if System namespace maybe
return $"`{uid.Replace('{', '<').Replace('}', '>')}`";
var name = nameOnly ? reference.Name : reference.FullName;
var dots = linkFromIndex ? "./" : linkFromGroupedType ? "../../" : "../";
var extension = linkFromIndex ? ".md" : "";
if (reference.Type is "Class" or "Interface" or "Enum" or "Struct" or "Delegate")
{
if (NamespaceHasTypeGrouping(reference.Namespace))
return
$"[{HtmlEscape(name)}]({FileEscape($"{dots}{reference.Namespace}/{GetTypePathPart(reference.Type)}/{reference.Name}{extension}")})";
return $"[{HtmlEscape(name)}]({FileEscape($"{dots}{reference.Namespace}/{reference.Name}{extension}")})";
}
else if (reference.Type is "Namespace")
{
if (config.RewriteInterlinks)
{
if (linkFromIndex)
{
return $"[{HtmlEscape(name)}]({FileEscape($"{dots}{reference.Name}/{reference.Name}{extension}")})";
}
else
{
return $"[{HtmlEscape(name)}]({FileEscape($"{dots}{reference.Name}")})";
}
}
return $"[{HtmlEscape(name)}]({FileEscape($"{dots}{reference.Name}/{reference.Name}{extension}")})";
}
else
{
var parent = items.FirstOrDefault(i => i.Uid == reference.Parent);
if (parent == null)
return $"`{uid.Replace('{', '<').Replace('}', '>')}`";
return
$"[{HtmlEscape(name)}]({FileEscape($"{dots}{reference.Namespace}{(NamespaceHasTypeGrouping(parent.Namespace) ? $"/{GetTypePathPart(parent.Type)}" : "")}/{parent.Name}{extension}")}#{reference.Name.ToLower().Replace("(", "").Replace(")", "").Replace("?", "")})";
}
}
string? GetSummary(string? summary, bool linkFromGroupedType)
{
if (summary == null)
return null;
summary = xrefRegex.Replace(summary, match =>
{
var uid = match.Groups[1].Value;
return Link(uid, linkFromGroupedType);
});
summary = langwordXrefRegex.Replace(summary, match => $"`{match.Groups[1].Value}`");
summary = codeBlockRegex.Replace(summary, match => $"```csharp\n{match.Groups[1].Value.Trim()}\n```");
summary = codeRegex.Replace(summary, match => $"`{match.Groups[1].Value}`");
summary = linkRegex.Replace(summary, match => $"[{match.Groups[2].Value}]({match.Groups[1].Value})");
summary = brRegex.Replace(summary, _ => config.BrNewline);
if (config.ForceNewline)
summary = summary.Replace("\n", config.ForcedNewline);
return HtmlEscape(summary);
}
stopwatch.Restart();
// create type files finally
await Parallel.ForEachAsync(items, async (item, _) =>
{
// for global namespace?
// ReSharper disable once ConditionIsAlwaysTrueOrFalseAccordingToNullableAPIContract
if (item.CommentId == null)
{
if (item.Type == "Namespace")
return;
// ReSharper disable once NullCoalescingConditionIsAlwaysNotNullAccordingToAPIContract
// ReSharper disable once NullCoalescingConditionIsAlwaysNotNullAccordingToAPIContract
Warn($"Missing commentId for {item.Uid ?? item.Id ?? "(can't get uid or id)"}");
return;
}
if (item.CommentId.StartsWith("T:"))
{
var isGroupedType = typeCounts != null && typeCounts[item.Namespace] >= config.TypesGrouping!.MinCount;
var str = new StringBuilder();
str.AppendLine("---");
str.AppendLine("title: " + item.Type + " " + item.Name);
str.AppendLine("sidebar_label: " + item.Name);
if (item.Summary != null)
// todo: run a regex replace to get rid of hyperlinks and inline code blocks?
str.AppendLine($"description: \"{GetSummary(item.Summary, isGroupedType)?.Trim().Replace("\"", "\\\"")}\"");
str.AppendLine("---");
str.AppendLine($"# {item.Type} {HtmlEscape(item.Name)}");
str.AppendLine(GetSummary(item.Summary, isGroupedType)?.Trim());
str.AppendLine();
str.AppendLine($"###### **Assembly**: {item.Assemblies[0]}.dll");
Declaration(str, item);
// do not when it is only System.Object
if (item.Inheritance?.Length > 1)
{
str.Append("**Inheritance:** ");
for (int i = 0; i < item.Inheritance.Length; i++)
{
str.Append(Link(item.Inheritance[i], isGroupedType));
if (i != item.Inheritance.Length - 1)
str.Append(" -> ");
}
str.Append("\n\n");
}
if (item.DerivedClasses != null)
{
str.AppendLine("**Derived:** ");
if (item.DerivedClasses.Length > 8)
str.AppendLine("\n<details>\n<summary>Expand</summary>\n");
for (var i = 0; i < item.DerivedClasses.Length; i++)
{
str.Append(Link(item.DerivedClasses[i], isGroupedType));
if (i != item.DerivedClasses.Length - 1)
str.Append(", ");
}
if (item.DerivedClasses.Length > 8)
str.AppendLine("\n</details>\n");
str.Append("\n\n");
}
if (item.Implements != null)
{
str.AppendLine("**Implements:** ");
if (item.Implements.Length > 8)
str.AppendLine("\n<details>\n<summary>Expand</summary>\n");
for (var i = 0; i < item.Implements.Length; i++)
{
str.Append(Link(item.Implements[i], isGroupedType));
if (i != item.Implements.Length - 1)
str.Append(", ");
}
if (item.Implements.Length > 8)
str.AppendLine("\n</details>\n");
str.Append("\n\n");
}
// Properties
var properties = GetProperties(item.Uid);
if (properties.Length != 0)
{
str.AppendLine("## Properties");
foreach (var property in properties)
{
str.AppendLine($"### {property.Name}");
str.AppendLine(GetSummary(property.Summary, isGroupedType)?.Trim());
Declaration(str, property);
}
}
// Fields
var fields = GetFields(item.Uid);
if (fields.Length != 0)
{
str.AppendLine("## Fields");
foreach (var field in fields)
{
str.AppendLine($"### {field.Name}");
str.AppendLine(GetSummary(field.Summary, isGroupedType)?.Trim());
Declaration(str, field);
}
}
// Methods
var methods = GetMethods(item.Uid);
if (methods.Length != 0)
{
str.AppendLine("## Methods");
foreach (var method in methods)
{
str.AppendLine($"### {HtmlEscape(method.Name)}");
str.AppendLine(GetSummary(method.Summary, isGroupedType)?.Trim());
Declaration(str, method);
if (!string.IsNullOrWhiteSpace(method.Syntax!.Return?.Type))
{
str.AppendLine();
str.AppendLine("##### Returns");
str.AppendLine();
str.Append(Link(method.Syntax.Return.Type, isGroupedType).Trim());
if (string.IsNullOrWhiteSpace(method.Syntax.Return?.Description))
str.AppendLine();
else
str.Append(": " + GetSummary(method.Syntax.Return.Description, isGroupedType));
}
if (method.Syntax.Parameters is { Length: > 0 })
{
str.AppendLine();
str.AppendLine("##### Parameters");
str.AppendLine();
if (method.Syntax.Parameters.Any(p => !string.IsNullOrWhiteSpace(p.Description)))
{
str.AppendLine("| Type | Name | Description |");
str.AppendLine("|:--- |:--- |:--- |");
foreach (var parameter in method.Syntax.Parameters)
str.AppendLine(
$"| {Link(parameter.Type, isGroupedType)} | *{parameter.Id}* | {GetSummary(parameter.Description, isGroupedType)} |");
}
else
{
str.AppendLine("| Type | Name |");
str.AppendLine("|:--- |:--- |");
foreach (var parameter in method.Syntax.Parameters)
str.AppendLine(
$"| {Link(parameter.Type, isGroupedType)} | *{parameter.Id}* |");
}
str.AppendLine();
}
if (method.Syntax.TypeParameters is { Length: > 0 })
{
str.AppendLine("##### Type Parameters");
if (method.Syntax.TypeParameters.Any(tp => !string.IsNullOrWhiteSpace(tp.Description)))
{
str.AppendLine("| Name | Description |");
str.AppendLine("|:--- |:--- |");
foreach (var typeParameter in method.Syntax.TypeParameters)
str.AppendLine(
$"| {Link(typeParameter.Id, isGroupedType)} | {typeParameter.Description} |");
}
else
foreach (var typeParameter in method.Syntax.TypeParameters)
str.AppendLine($"* {Link(typeParameter.Id, isGroupedType)}");
}
if (method.Exceptions is { Length: > 0 })
{
str.AppendLine();
str.AppendLine("##### Exceptions");
str.AppendLine();
foreach (var exception in method.Exceptions)
{
// those two spaces are there so that we can have a line break without too much spacing
// before the next line
str.AppendLine($"{Link(exception.Type, isGroupedType)} ");
str.AppendLine(GetSummary(exception.Description, isGroupedType)?.Trim());
}
}
}
}
// Events
var events = GetEvents(item.Uid);
if (events.Length != 0)
{
str.AppendLine("## Events");
foreach (var @event in events)
{
str.AppendLine($"### {HtmlEscape(@event.Name)}");
str.AppendLine(GetSummary(@event.Summary, isGroupedType)?.Trim());
Declaration(str, @event);
str.AppendLine("##### Event Type");
if (@event.Syntax!.Return!.Description == null)
str.AppendLine(Link(@event.Syntax.Return.Type, isGroupedType).Trim());
else
str.AppendLine(Link(@event.Syntax.Return.Type, isGroupedType).Trim() + ": " +
@event.Syntax.Return.Description);
}
}
// Implements
if (item.Implements?.Any() ?? false)
{
str.AppendLine();
str.AppendLine("## Implements");
str.AppendLine();
foreach (var implemented in item.Implements)
{
str.AppendLine($"* {Link(implemented, isGroupedType)}");
}
}
// Extension methods
if (item.ExtensionMethods is { Length: > 1 })
{
str.AppendLine("## Extension Methods");
foreach (var extMethod in item.ExtensionMethods!)
{
// ReSharper disable once SimplifyConditionalTernaryExpression
// todo: wont link if other args are present
var method = items.FirstOrDefault(i =>
((i.Syntax?.Parameters?.Any() ?? false)
? (i.Syntax.Parameters[0].Type + '.' +
i.FullName
[..(i.FullName.IndexOf('(') == -1 ? i.FullName.Length : i.FullName.IndexOf('('))] ==
extMethod)
: false));
if (method == null)
str.AppendLine($"* {extMethod.Replace("{", "{").Replace("}", "}")}");
else
str.AppendLine($"* {Link(method.Uid, isGroupedType)}");
}
}
var path = !isGroupedType
? Path.Join(config.OutputPath, item.Namespace, item.Name.Replace('<', '`').Replace('>', '`')) + ".md"
: Path.Join(config.OutputPath, item.Namespace, GetTypePathPart(item.Type),
item.Name.Replace('<', '`').Replace('>', '`')) + ".md";
// create directory if it doesn't exist
Directory.CreateDirectory(Path.GetDirectoryName(path)!);
await File.WriteAllTextAsync(path, str.ToString());
}
else if (item.Type == "Namespace")
{
var str = new StringBuilder();
str.AppendLine("---");
str.AppendLine("title: " + item.Type + " " + item.Name);
str.AppendLine("sidebar_label: " + item.Name);
str.AppendLine("---");
str.AppendLine($"# Namespace {HtmlEscape(item.Name)}");
void Do(string type, string header)
{
var where = items.Where(i => i.Namespace == item.Name && i.Type == type).ToArray();
if (where.Length != 0)
{
str.AppendLine($"## {header}");
foreach (var item1 in where.OrderBy(i => i.Name))
{
str.AppendLine($"### {HtmlEscape(Link(item1.Uid, false, nameOnly: true))}");
str.AppendLine(GetSummary(item1.Summary, false)?.Trim());
}
}
}
Do("Class", "Classes");
Do("Struct", "Structs");
Do("Interface", "Interfaces");
Do("Enum", "Enums");
Do("Delegate", "Delegates");
await File.WriteAllTextAsync(Path.Join(config.OutputPath, item.Name, $"{item.Name}.md"), str.ToString());
}
});
// generate index page
{
var str = new StringBuilder();
str.AppendLine("---");
str.AppendLine("title: Index");
str.AppendLine("sidebar_label: Index");
str.AppendLine("sidebar_position: 0");
str.AppendLine($"slug: {config.IndexSlug}");
str.AppendLine("---");
str.AppendLine("# API Index");
str.AppendLine("## Namespaces");
foreach (var @namespace in items.Where(i => i.Type == "Namespace").OrderBy(i => i.Name))
str.AppendLine($"* {HtmlEscape(Link(@namespace.Uid, false, linkFromIndex: true))}");
str.AppendLine();
str.AppendLine("---");
str.AppendLine(
$"Generated using [DocFxMarkdownGen](https://github.com/Jan0660/DocFxMarkdownGen) v{versionString}.");
await File.WriteAllTextAsync(Path.Join(config.OutputPath, $"index.md"), str.ToString());
}
Info($"Markdown finished in {stopwatch.ElapsedMilliseconds}ms.");
// classes
class DocFxFile
{
public Item[] Items { get; set; }
}
class Item
{
public string Uid { get; set; }
public string CommentId { get; set; }
public string Id { get; set; }
public string Parent { get; set; }
public string[] Children { get; set; }
public string[] Langs { get; set; }
public string Definition { get; set; }
public string Name { get; set; }
public string NameWithType { get; set; }
public string FullName { get; set; }
public string Type { get; set; }
public Source? Source { get; set; }
public string[] Assemblies { get; set; }
public string Namespace { get; set; }
// todo: trim when loading instead of when usig gnfgnrjfuijik
public string? Summary { get; set; }
// todo: example
public Syntax? Syntax { get; set; }
public string[]? Inheritance { get; set; }
public string[]? DerivedClasses { get; set; }
public string[]? Implements { get; set; }
public string[]? ExtensionMethods { get; set; }
// modifiers.csharp
// modifiers.vb
public ThrowsException[]? Exceptions { get; set; }
}
class ThrowsException
{
public string Type { get; set; }
public string CommentId { get; set; }
public string Description { get; set; }
}
class Syntax
{
public string Content { get; set; }
[YamlMember(Alias = "content.vb")] public string ContentVb { get; set; }
public Parameter[]? Parameters { get; set; }
public TypeParameter[]? TypeParameters { get; set; }
public SyntaxReturn? Return { get; set; }
}
class Source
{
public Remote? Remote { get; set; }
public string Id { get; set; }
public string Path { get; set; }
public int StartLine { get; set; }
}
class Remote
{
public string Path { get; set; }
public string Branch { get; set; }
public string Repo { get; set; }
}
class Parameter
{
public string Id { get; set; }
public string Type { get; set; }
public string? Description { get; set; }
}
class TypeParameter
{
public string Id { get; set; }
public string Description { get; set; }
}
class SyntaxReturn
{
public string Type { get; set; }
public string? Description { get; set; }
}
class Config
{
public string YamlPath { get; set; }
public string OutputPath { get; set; }
public string IndexSlug { get; set; } = "/api";
public ConfigTypesGrouping? TypesGrouping { get; set; }
public string BrNewline { get; set; } = "\n\n";
public bool ForceNewline { get; set; } = false;
public string ForcedNewline { get; set; } = " \n";
public bool RewriteInterlinks { get; set; } = false;
}
public class ConfigTypesGrouping
{
public bool Enabled { get; set; }
public int MinCount { get; set; } = 12;
}