mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-26 08:04:53 +00:00
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
import { SpaceEntity } from '@app/common/modules/space/entities/space.entity';
|
|
import { Expose } from 'class-transformer';
|
|
|
|
export class SpaceWithParentsDto extends SpaceEntity {
|
|
@Expose()
|
|
lastThreeParents: string;
|
|
}
|