Point.cs 85 B

12345678
  1. namespace jsonapi.Data
  2. {
  3. public class Point
  4. {
  5. public int x;
  6. public int y;
  7. }
  8. }