File size: 130 Bytes
d9494a5
 
 
 
 
 
1
2
3
4
5
6
7
export abstract class BaseWorkspaceEntity {
  id: string;
  createdAt: string;
  updatedAt: string;
  deletedAt: string | null;
}