mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-23 16:26:35 +08:00
15 lines
281 B
C#
15 lines
281 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataStruct
|
|
{
|
|
[Serializable]
|
|
public class ConfigData
|
|
{
|
|
public static string ConfigPath { get; set; } = @"D:\VisionSystem\";
|
|
}
|
|
}
|