Skip to content

Instantly share code, notes, and snippets.

@mdfarragher
Created November 7, 2019 14:23
Show Gist options
  • Save mdfarragher/c273674287bb3379365fe39cf3a9708f to your computer and use it in GitHub Desktop.
Save mdfarragher/c273674287bb3379365fe39cf3a9708f to your computer and use it in GitHub Desktop.
/// <summary>
/// The FromLocation class is used in a column data conversion.
/// </summary>
public class FromLocation
{
public float[] EncodedLongitude { get; set; }
public float[] EncodedLatitude { get; set; }
}
/// <summary>
/// The ToLocation class is used in a column data conversion.
/// </summary>
public class ToLocation
{
public float[] Location { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment