apps/recallassess/recallassess-api/src/api/client/learning/dto/video-progress.dto.ts
Properties |
| watchedSeconds |
Type : number
|
Decorators :
@Expose()
|
import { Exclude, Expose } from "class-transformer";
import { IsInt, Min } from "class-validator";
@Exclude()
export class VideoProgressDto {
@Expose()
@IsInt()
@Min(0)
watchedSeconds!: number;
}