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.
35 lines (28 loc) • 733 B
text/typescript
import {
Entity,
PrimaryGeneratedColumn,
Column,
CreateDateColumn,
UpdateDateColumn,
ManyToOne,
JoinColumn,
} from "typeorm";
import { UserData } from "./user.data";
import { VentureData } from "./venture.data";
export class VentureSponsorshipData {
id: string;
monthlyAmount: number;
createdAt: Date;
updatedAt: Date;
sponsor?: UserData;
venture?: VentureData;
}