18 lines
461 B
C#
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; } = "";
|
|
}
|
|
}
|