LocalSettings.cs 617 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows.Forms;
  8. namespace T_FaceRecognizer
  9. {
  10. /// <summary>
  11. /// настройки приложения
  12. /// </summary>
  13. [Serializable]
  14. public class LocalSettings
  15. {
  16. public int SelectedCameraID { get; set; } = -1;
  17. public int PositionLocationX { get; set; } = -1;
  18. public int PositionLocationY { get; set; } = -1;
  19. public int FormWidth { get; set; } = -1;
  20. public int FormHeight { get; set; } = -1;
  21. }
  22. }