Something went wrong. Try again.
because I got bored of customising my CV for every job
Something went wrong. Try again.
TypeScript
123456789101112export abstract class BaseEntity { id: string; createdAt: Date; updatedAt: Date;
constructor(id: string, createdAt: Date, updatedAt: Date) { this.id = id; this.createdAt = createdAt; this.updatedAt = updatedAt; }}