UNPKG

scheunemann-interfaces

Version:
22 lines (21 loc) 622 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CoordsEntity = void 0; var CoordsEntity = /** @class */ (function () { // #endregion Properties (2) // #region Constructors (1) function CoordsEntity(data) { // #region Properties (2) this.latitude = 0; this.longitude = 0; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return CoordsEntity; }()); exports.CoordsEntity = CoordsEntity;