File

libs/self-care-tasks/domain/src/lib/entities/self-care-user-task.entity.ts

Index

Properties

Properties

createdAt
createdAt: string
Type : string
id
id: string
Type : string
scheduledAt
scheduledAt: string
Type : string
task
task: SelfCareTask
Type : SelfCareTask
taskId
taskId: string
Type : string
updatedAt
updatedAt: string
Type : string
userId
userId: string
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;
}

results matching ""

    No results matching ""