recipe-backend/src/dtos/UserDto.ts
2025-11-30 08:41:13 +01:00

10 lines
No EOL
253 B
TypeScript

import { AbstractDto } from "./AbstractDto.js";
import { UserRole } from "../enums/UserRole.js";
export class UserDto extends AbstractDto {
firstName?: string;
lastName?: string;
userName!: string;
email!: string;
role?: UserRole;
}