Size.cs 347 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace FlowChartV2.Libraries
  6. {
  7. public class Size
  8. {
  9. public int h { get; set; }
  10. public int w { get; set; }
  11. public Size(int h = 0, int w = 0)
  12. {
  13. this.h = h;
  14. this.w = w;
  15. }
  16. }
  17. }