26 lines
584 B
C#
26 lines
584 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 string urlPhoto;
|
|
public int sizePhotoItem;
|
|
public SettingApp()
|
|
{
|
|
this.pathApp = "CmRcViewer.exe";
|
|
this.sizeHistoryItem = 200;
|
|
this.urlPhoto = "http://localhost/Photo/{#Login}.png";
|
|
this.sizePhotoItem = 100;
|
|
}
|
|
|
|
}
|
|
}
|