using Disco.Models.Services.Exporting; using System.Collections.Generic; namespace Disco.Models.UI.Config.Export { public interface ConfigExportIndexModel : BaseUIModel { List SavedExports { get; set; } Dictionary ExportTypeNames { get; set; } Dictionary CreatedUsers { get; set; } } }