using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace HStation.RevitDev.RevitDataExport.Common
|
{
|
public static class GlobalResource
|
{
|
public static List<string> DockablePanelIds => new List<string>
|
{
|
"8AF8DA72-120F-44A0-81DD-5DD24EDAB919",
|
"1A2728E3-51FF-4084-B0B6-F6DAD26A56FB"
|
};
|
|
public static int ThumbnailSize => 150;
|
}
|
}
|