SCCManager/Remontor/Setting/SettingApp.cs

40 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 bool StartMode;
public bool ConnectMode;
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}";
this.StartMode = true;
this.ConnectMode = true;
}
}
}