refactor: simplify export metadata construction
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user