This commit is contained in:
atvstdla
2025-10-02 14:38:46 +09:00
parent 9887cc7540
commit b707eee6ea
20 changed files with 1980 additions and 1 deletions

26
Handler/swPLC/PUB.cs Normal file
View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.PerformanceData;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Project
{
public static class PUB
{
private static CSetting setting;
public static CSetting Setting
{
get
{
if(setting == null)
{
setting = new CSetting();
setting.Load();
}
return setting;
}
}
}
}