export class SizeF_2D { public Width: number; public Height: number; constructor(width: number = 0, height: number = 0) { this.Width = width; this.Height = height; } }