using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Drawing; namespace SketchAssistant { class Line { private Point Start { get; set; } private Point End { get; set; } public Line(int[] points) { } } }