because I got bored of customising my CV for every job
at main 11 lines 238 B view raw
1export abstract class BaseEntity { 2 id: string; 3 createdAt: Date; 4 updatedAt: Date; 5 6 constructor(id: string, createdAt: Date, updatedAt: Date) { 7 this.id = id; 8 this.createdAt = createdAt; 9 this.updatedAt = updatedAt; 10 } 11}