using Disco.Models.Services.Exporting; using System.Collections.Generic; namespace Disco.Models.Exporting { public class ExportMetadata : List> where O : IExportOptions where R : IExportRecord { public List IgnoreGroupNames { get; } = new List(); public O Options { get; set; } public ExportMetadata(O options) { Options = options; } } }