import { Attr } from 'ts-framework' export class GoogleShapeResponseDTO { id: string geojson: string geozoneId: string } export class CreateGoogleShapeDTO { @Attr({ type: String }) geojson: string @Attr({ type: String }) geozoneId: string } export class RemoveShapeDTO { @Attr({ type: String }) shapeId: string }