Advertisement
vencinachev

PointClass

Jan 12th, 2021
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace SoftUniiii
  8. {
  9. class Point
  10. {
  11. public int X { get; set; }
  12.  
  13. public int Y { get; set; }
  14.  
  15. public Point(int x, int y)
  16. {
  17. this.X = x;
  18. this.Y = y;
  19. }
  20. }
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement