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