libs/self-care-tasks/domain/src/lib/entities/self-care-user-task.entity.ts
Properties |
| createdAt |
createdAt:
|
Type : string
|
| id |
id:
|
Type : string
|
| scheduledAt |
scheduledAt:
|
Type : string
|
| task |
task:
|
Type : SelfCareTask
|
| taskId |
taskId:
|
Type : string
|
| updatedAt |
updatedAt:
|
Type : string
|
| userId |
userId:
|
Type : string
|
import { SelfCareTask } from './self-care-task.entity';
export interface SelfCareUserTask {
id: string;
taskId: string;
task: SelfCareTask;
userId: string;
// user: User;
// status: TaskStatus;
createdAt: string;
scheduledAt: string;
updatedAt: string;
}