Interface UpsertCourseDTO

interface UpsertCourseDTO {
    abstract: string;
    coverImageUrl: string;
    description: string;
    lessons: {
        worksheetKey: string;
    }[];
    members: DocumentMembersDTO;
    title: string;
}

Hierarchy

Properties

abstract: string
coverImageUrl: string
description: string
lessons: {
    worksheetKey: string;
}[]

Type declaration

  • worksheetKey: string
title: string