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