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