Region Entity
data class RegionEntity(val id: Long = 0, val regionsID: Long, val polygonID: Long, val active: Boolean, var boundingBoxSouthwest: GeoLocationEntity, var boundingBoxNortheast: GeoLocationEntity, val zIndex: Float)
The class representation of the entity 'Region' from the database. This entity stores information about a geographic region defined by a polygon.
Constructors
Link copied to clipboard
constructor(id: Long = 0, regionsID: Long, polygonID: Long, active: Boolean, boundingBoxSouthwest: GeoLocationEntity, boundingBoxNortheast: GeoLocationEntity, zIndex: Float)