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.
32 lines (26 loc) • 728 B
text/typescript
import {
Column,
CreateDateColumn,
Entity,
JoinColumn,
ManyToOne,
PrimaryGeneratedColumn,
} from "typeorm";
import { UserDetailData } from "./user-detail.data";
import { VentureDetailData } from "./venture-detail.data";
export class VentureSubscriptionData {
id: string;
createdAt: Date;
subscriber?: UserDetailData;
detail?: VentureDetailData;
}