using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace uBIM_EarthTools
{
internal class AppConfig
{
#region 程序需记录的数据目录(如设置等)
///
/// 程序需记录的数据目录(如设置等)
///
public static readonly string APP_DATA_PATH = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) + "\\uBIMTools";
#endregion
#region 临时数据目录
///
/// 临时数据目录
///
public static readonly string APP_TEMP_PATH = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) + "\\uBIMTools\\temp";
#endregion
}
}