


export class MainApiAnswerDTO<T> {
    res?: T
    error?: MainApiAnswerErrorDTO
}

export class MainApiAnswerErrorDTO {
    message: string
    code?: string
    field?: string
}