using Disco.Models.Services.Exporting; using System; using System.Collections.Generic; using System.Linq.Expressions; namespace Disco.Models.UI.Shared { public interface SharedExportFieldsModel : BaseUIModel where T : IExportOptions { T Options { get; set; } List FieldGroups { get; set; } void AddCustomUserDetails(Expression>> modelAccessor, int groupIndex = -1); } }