27 lines
554 B
C#
27 lines
554 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
}
|