Line.cs 337 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Drawing;
  7. namespace SketchAssistant
  8. {
  9. class Line
  10. {
  11. private Point Start { get; set; }
  12. private Point End { get; set; }
  13. public Line(int[] points)
  14. {
  15. }
  16. }
  17. }