DoubleCords.cs 458 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PixiEditorDotNetCore3.Models
  7. {
  8. public class DoubleCords
  9. {
  10. public Coordinates Coords1 { get; set; }
  11. public Coordinates Coords2 { get; set; }
  12. public DoubleCords(Coordinates cords1, Coordinates cords2)
  13. {
  14. Coords1 = cords1;
  15. Coords2 = cords2;
  16. }
  17. }
  18. }