@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
15 lines (14 loc) • 384 B
TypeScript
import { BaseEntity } from "./base.entity";
import { Task } from "./task.entity";
export declare enum TaskDeliverableTypeEnum {
REQUIRED = "REQUIRED",
NEED_TO_ADD = "NEED_TO_ADD",
OTHER = "OTHER"
}
export declare class TaskDeliverable extends BaseEntity {
taskId: number;
task: Task;
name: string;
description: string;
type: TaskDeliverableTypeEnum;
}