src/common/dtos/abstract.dto.ts
Properties |
|
constructor(abstract: AbstractEntity)
|
||||||
Defined in src/common/dtos/abstract.dto.ts:4
|
||||||
Parameters :
|
Readonly uuid |
Type : string
|
Defined in src/common/dtos/abstract.dto.ts:4
|
import { AbstractEntity } from 'common/entities';
export class AbstractDto {
readonly uuid: string;
constructor(abstract: AbstractEntity) {
this.uuid = abstract.uuid;
}
}