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.

13 lines (12 loc) 304 B
import { UserData } from "./user.data"; import { VentureData } from "./venture.data"; export declare class VentureCategoryData { id: string; name: string; slug: string; description: string; createdAt: Date; updatedAt: Date; users?: UserData[]; ventures?: VentureData[]; }