Subd/server/controllers/user/user.dto.ts

8 lines
124 B
TypeScript
Raw Normal View History

2024-04-23 12:08:46 +04:00
export interface IUserDto {
nickname: string;
avatar: string;
email: string;
password: string;
role_id: number;
}