PointDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Defines the Point type. In geography, a point refers to a Position on a map, expressed in latitude and longitude.
public class PointDto
Properties
Coordinates
The Position underlying this point.
public PositionDto Coordinates { get; set; }
Property Value
Constructors
PointDto(PositionDto)
Creates a new instance of the PointDto class.
public PointDto(PositionDto coordinates)
Parameters
coordinates
PositionDto
The Position.