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) 281 B
import { VenturePublicationData } from "./venture-publication.data"; export declare class PublicationCategoryData { id: string; name: string; slug: string; description: string; createdAt: Date; updatedAt: Date; publications: VenturePublicationData[]; }