@arsendoman/book-publisher-store
Version:
A Nest.js package for book publishing and storing
17 lines (14 loc) • 325 B
text/typescript
import { BookCategoryEnum } from '../../../../core/enums/book.category.enum';
export class ProfileResponseDto {
id?: string;
username: string;
email: string;
bio: string;
image: string;
role: RoleResponseDto;
favoriteCategories: BookCategoryEnum[];
}
class RoleResponseDto {
id?: string;
title: string;
}