echadospalante-core
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.
22 lines (21 loc) • 698 B
TypeScript
import { VentureDetailData } from "./venture-detail.data";
import { VentureLocationData } from "./venture-location.data";
import { UserDetailData } from "./user-detail.data";
import { VentureContactData } from "./venture-contact.data";
import { VentureCategoryData } from "./venture-category.data";
export declare class VentureData {
id: string;
name: string;
slug: string;
coverPhoto: string;
description: string;
active: boolean;
verified: boolean;
createdAt: Date;
updatedAt: Date;
detail?: VentureDetailData;
location?: VentureLocationData;
ownerDetail?: UserDetailData;
contact?: VentureContactData;
categories: VentureCategoryData[];
}