src/app/core/http/dtos/put-interview.dto.ts
Properties |
endDate |
endDate:
|
Type : string
|
goal |
goal:
|
Type : string
|
startDate |
startDate:
|
Type : string
|
status |
status:
|
Type : InterviewStatus
|
import { InterviewStatus } from '../../data/models/interview.model';
export interface PutInterviewDto {
startDate: string;
endDate: string;
status: InterviewStatus;
goal: string;
}