Subd/server/controllers/user/user.dto.ts
2024-04-23 12:08:46 +04:00

8 lines
124 B
TypeScript

export interface IUserDto {
nickname: string;
avatar: string;
email: string;
password: string;
role_id: number;
}