35 lines
646 B
C#
35 lines
646 B
C#
using OliviaAddInPro.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OliviaAddInPro.Services
|
|
{
|
|
class ConfigServ
|
|
{
|
|
private static ConfigServ configServ=null;
|
|
|
|
public static ConfigServ Serv
|
|
{
|
|
get {
|
|
if (configServ == null)
|
|
configServ = new ConfigServ();
|
|
return configServ;
|
|
}
|
|
}
|
|
|
|
public OliviaConf Leer()
|
|
{
|
|
return new OliviaConf();
|
|
}
|
|
|
|
public void Guardar(OliviaConf conf)
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|