36 lines
1.0 KiB
C#
36 lines
1.0 KiB
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 string DialogName;
|
||
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;
|
||
this.DialogName = "Устанавливается контакт с агентом удаленного управления на клиенте {#PCName}";
|
||
}
|
||
|
||
}
|
||
}
|