20 lines
446 B
C#
20 lines
446 B
C#
using Remontor.History;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Remontor.Setting
|
|
{
|
|
[Serializable]
|
|
internal struct SSetting
|
|
{
|
|
public SettingWords settingWords;
|
|
public List<HistoryItem> historyItems;
|
|
public SettingExpand settingExpand;
|
|
public SettingSCCM settingSCCM;
|
|
public SettingApp settingApp;
|
|
}
|
|
}
|