refactor: simplify export metadata construction

This commit is contained in:
Gary Sharp
2025-02-07 16:10:15 +11:00
parent 67f1c2a5d1
commit 2fce645066
30 changed files with 1432 additions and 1484 deletions
+10
View File
@@ -0,0 +1,10 @@
using System.Collections.Generic;
namespace Disco.Models.Exporting
{
public class ExportMetadata<T>
: List<ExportMetadataField<T>> where T : IExportRecord
{
public List<string> IgnoreShortNames { get; } = new List<string>();
}
}