21 lines
412 B
C#
21 lines
412 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Remontor.Setting
|
|
{
|
|
[Serializable]
|
|
internal class SettingApp
|
|
{
|
|
public string pathApp;
|
|
public int sizeHistoryItem;
|
|
public SettingApp()
|
|
{
|
|
this.pathApp = "CmRcViewer.exe";
|
|
this.sizeHistoryItem = 200;
|
|
}
|
|
}
|
|
}
|