Interface ClassAssignmentBaseDocument

interface ClassAssignmentBaseDocument {
    assignmentId: string;
    comments: {
        content: string;
        timestamp: number;
        userId: string;
    }[];
    points: number;
    userId: string;
}

Properties

assignmentId: string
comments: {
    content: string;
    timestamp: number;
    userId: string;
}[]

Type declaration

  • content: string
  • timestamp: number
  • userId: string
points: number
userId: string