32 lines
688 B
C#
32 lines
688 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using OliviaAddInPro.Model;
|
|
namespace OliviaAddInPro
|
|
{
|
|
class PaneConfigViewModel : PanelViewModelBase
|
|
{
|
|
private OliviaConf conf;
|
|
public PaneConfigViewModel()
|
|
{
|
|
conf = OliviaConf.Conf();
|
|
}
|
|
|
|
|
|
public override string DisplayName
|
|
{
|
|
get { return Resource1.String_ConfigGeneralView; }
|
|
}
|
|
|
|
public OliviaConf Configuracion
|
|
{
|
|
get { return conf; }
|
|
set { base.SetProperty(ref conf, value, () => conf); }
|
|
}
|
|
}
|
|
|
|
}
|