using HStation.RevitDev.Model.ModelEnum; using System.Collections.Generic; namespace HStation.RevitDev.RevitDataExport.Entity { public class Records { public List ConfigRecords { get; set; } = new List(); } public class ConfigRecord { public string FilePath { get; set; } public Dictionary> Record { get; set; } } }