UNPKG

scheunemann-interfaces

Version:
12 lines (11 loc) 398 B
import { IMottuEvent, IMottuEventDeliveryMan, IMottuEventRequestedBy } from '../interfaces'; export declare class MottuEventEntity implements IMottuEvent { createdAt: Date; deliveryMan: IMottuEventDeliveryMan; description: string; id: number; latitude: number; longitude: number; requestedBy: IMottuEventRequestedBy; constructor(data?: Partial<MottuEventEntity>); }