add recurence to agenda web

This commit is contained in:
Eudes Inácio
2024-06-07 14:10:17 +01:00
parent 95bb69be99
commit 4be9c6562e
7 changed files with 90 additions and 30 deletions
+3 -1
View File
@@ -4,11 +4,13 @@ import { EventPerson } from './eventperson.model';
export interface EventRecurrence {
Type: number | string;
Type?: number | string;
Day?: number;
DayOfWeek?: number;
Month?: number | string;
LastOccurrence?: Date | string;
frequency?: string,
until?: string
}
export class Event{