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.
33 lines (27 loc) • 770 B
text/typescript
// publication-clap.entity.ts
import {
Entity,
PrimaryGeneratedColumn,
Column,
CreateDateColumn,
ManyToOne,
JoinColumn,
} from "typeorm";
import { UserDetailData } from "./user-detail.data";
import { VenturePublicationData } from "./venture-publication.data";
export class PublicationClapData {
id: string;
publication: VenturePublicationData;
user: UserDetailData;
createdAt: Date;
}