Files
Disco/Disco.Models/Exporting/ExportMetadata.cs
T
2025-02-07 16:12:19 +11:00

11 lines
261 B
C#

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>();
}
}