import { IEntityCreateDto, IToDoListEntity } from "../../entities"; /** status is set by the entity flow, never by the client */ export type IToDoListCreateExclude = "status"; export interface IToDoListCreateDto extends Omit, IToDoListCreateExclude> { }