UNPKG

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) 251 B
import { VentureEventData } from "./venture-event.data"; export declare class EventCategoryData { id: string; name: string; slug: string; description: string; createdAt: Date; updatedAt: Date; events: VentureEventData[]; }