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 { /// /// настройки приложения /// [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; } }