because I got bored of customising my CV for every job
at main 13 lines 282 B view raw
1import { BaseEntity } from "@cv/system"; 2 3export class ProfileEntity extends BaseEntity { 4 constructor( 5 id: string, 6 public readonly userId: string, 7 public readonly name: string, 8 createdAt: Date, 9 updatedAt: Date, 10 ) { 11 super(id, createdAt, updatedAt); 12 } 13}