Files
ACP/UIShare/GlobalVariable/GlobalConfig.cs
2026-07-31 09:03:09 +08:00

18 lines
461 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UIShare.GlobalVariable
{
public class GlobalConfig
{
[JsonIgnore]
public string SystemPath { get; set; } = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "ACP");
public string DefaultCSVFilePath { get; set; } = "";
}
}