Skip to content

Commit

Permalink
[feat] #7 geojson data modeling
Browse files Browse the repository at this point in the history
 - GeoJsonType.java added

 -
  • Loading branch information
Ramachandran Nellaiyappan committed Mar 14, 2024
1 parent 537a32a commit 9dc5497
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.github.nramc.dev.journey.api.geojson.types;

import com.fasterxml.jackson.annotation.JsonValue;
import lombok.Getter;

@Getter
Expand All @@ -14,6 +15,7 @@ public enum GeoJsonType {
FEATURE("Feature"),
FEATURE_COLLECTION("FeatureCollection");

@JsonValue
private final String type;

GeoJsonType(String type) {
Expand Down

0 comments on commit 9dc5497

Please sign in to comment.