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) • 695 B
TypeScript
import { EventLocationData } from "./event-location.data";
import { EventDonationData } from "./event-donation.data";
import { VentureDetailData } from "./venture-detail.data";
import { EventCategoryData } from "./event-category.data";
import { EventContactData } from "./event-contact.data";
export declare class VentureEventData {
id: string;
title: string;
description: string;
coverPhoto: string;
slug: string;
ventureDetail?: VentureDetailData;
location: EventLocationData;
contact: EventContactData;
categories: EventCategoryData[];
donations: EventDonationData[];
startDate: Date;
endDate: Date;
createdAt: Date;
updatedAt: Date;
}