Created
December 27, 2019 02:23
-
-
Save naderghanbari/73455418fb68ac056474554d0bfa6f61 to your computer and use it in GitHub Desktop.
Scala, Slick, and PostGIS :: Building Domain object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package domain | |
import java.util.UUID | |
import org.locationtech.jts.geom.Point | |
case class Building(id: UUID, name: String, coordinate: Point) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment