Interface TaskInterface

interface TaskInterface {
    assigned: UserBasicInterface[];
    comments: CommentInterface[];
    createdAt: Date;
    description: string;
    dueDate: Date;
    id: number;
    subtasks: [];
    title: string;
    updatedAt: Date;
}

Properties

assigned: UserBasicInterface[]
comments: CommentInterface[]
createdAt: Date
description: string
dueDate: Date
id: number
subtasks: []
title: string
updatedAt: Date