1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace T_FaceRecognizer
- {
- /// <summary>
- /// настройки приложения
- /// </summary>
- [Serializable]
- public class LocalSettings
- {
- public int SelectedCameraID { get; set; } = -1;
- public int PositionLocationX { get; set; } = -1;
- public int PositionLocationY { get; set; } = -1;
- public int FormWidth { get; set; } = -1;
- public int FormHeight { get; set; } = -1;
- }
- }
|