- Implemented Relais entity and CRUD API - Added relation between Users (Gestionnaires) and Relais - Updated database initialization script - Documentation updates Co-authored-by: Cursor <cursoragent@cursor.com>
5 lines
172 B
TypeScript
5 lines
172 B
TypeScript
import { PartialType } from '@nestjs/swagger';
|
|
import { CreateRelaisDto } from './create-relais.dto';
|
|
|
|
export class UpdateRelaisDto extends PartialType(CreateRelaisDto) {}
|