src/dto/1.0.0/user/user-course-model.dto.ts
Properties |
course |
Type : Course
|
id |
Type : String
|
qr |
Type : String
|
succesfulExam |
Type : Boolean
|
user |
Type : User
|
import { Course } from 'src/entity/course.entity';
import { User } from '../../../entity/user.entity';
export class UserCourseModelDTO {
id: String
user: User
course: Course
qr: String
succesfulExam: Boolean
}