SCCManager/Remontor/Setting/SettingApp.cs

34 lines
844 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 int xPosDoble;
public int yPosDoble;
public int WidthDoble;
public int HeightDoble;
public SettingApp()
{
this.pathApp = "CmRcViewer.exe";
this.sizeHistoryItem = 200;
this.urlPhoto = "http://localhost/Photo/{#Login}.png";
this.sizePhotoItem = 100;
this.xPosDoble = 0;
this.yPosDoble = 0;
this.WidthDoble = 3840;
this.HeightDoble = 1040;
}
}
}