10 lines
204 B
TypeScript
10 lines
204 B
TypeScript
|
|
import { ApiProperty } from "@nestjs/swagger"
|
||
|
|
|
||
|
|
export class HealthResponseDto {
|
||
|
|
@ApiProperty({ example: "image-platform-api" })
|
||
|
|
service!: string
|
||
|
|
|
||
|
|
@ApiProperty({ example: "ok" })
|
||
|
|
status!: string
|
||
|
|
}
|