123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace FlowChartV2.Libraries
- {
- public class Size
- {
- public int h { get; set; }
- public int w { get; set; }
- public Size(int h = 0, int w = 0)
- {
- this.h = h;
- this.w = w;
- }
- }
- }
|