UWUVCI-AIO-WPF/UWUVCI AIO WPF/Classes/N64Conf.cs

35 lines
663 B
C#
Raw Normal View History

2020-03-01 14:40:36 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UWUVCI_AIO_WPF.Classes
{
class N64Conf : BaseModel
2020-03-01 14:40:36 +00:00
{
private string iniPath;
public string INIPath
{
get { return iniPath; }
set { iniPath = value;
OnPropertyChanged();
}
}
private bool darkFilter;
public bool DarkFilter
{
get { return darkFilter; }
set { darkFilter = value;
OnPropertyChanged();
}
}
2020-03-01 14:40:36 +00:00
public byte[] INIBin { get; set; }
2020-03-01 14:40:36 +00:00
}
}