BasicLayer.cs 646 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Controls;
  7. using PixiEditor.Helpers;
  8. namespace PixiEditor.Models
  9. {
  10. [Serializable]
  11. public class BasicLayer : NotifyableObject
  12. {
  13. private int _width;
  14. public int Width
  15. {
  16. get { return _width; }
  17. set { _width = value; RaisePropertyChanged("Width"); }
  18. }
  19. private int _height;
  20. public int Height
  21. {
  22. get { return _height; }
  23. set { _height = value; RaisePropertyChanged("Height"); }
  24. }
  25. }
  26. }