mirror of
https://github.com/urosran/cally.git
synced 2025-07-15 01:35:22 +00:00
add todo repeat freq
This commit is contained in:
@ -1,12 +1,14 @@
|
||||
export interface IToDo {
|
||||
id: string;
|
||||
title: string;
|
||||
done: boolean;
|
||||
date: Date | null;
|
||||
points: number;
|
||||
rotate: boolean;
|
||||
repeatType: string;
|
||||
creatorId?: string,
|
||||
familyId?: string,
|
||||
assignees?: string[]; // Optional list of assignees
|
||||
}
|
||||
id: string;
|
||||
title: string;
|
||||
done: boolean;
|
||||
date: Date | null;
|
||||
points: number;
|
||||
rotate: boolean;
|
||||
repeatType: string;
|
||||
repeatDays?: string[];
|
||||
repeatWeeks?: number;
|
||||
creatorId?: string;
|
||||
familyId?: string;
|
||||
assignees?: string[]; // Optional list of assignees
|
||||
}
|
||||
|
Reference in New Issue
Block a user