echadospalante-domain
Version:
This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.
11 lines (10 loc) • 319 B
TypeScript
import { Point } from "typeorm";
import { VentureEventData } from "./venture-event.data";
import { MunicipalityData } from "./municipality.data";
export declare class EventLocationData {
id: string;
location?: Point;
municipality: MunicipalityData;
description?: string;
event?: VentureEventData;
}