- Booking: added modify a booking (+ emails).

This commit is contained in:
Paolo Arena
2019-10-10 21:08:29 +02:00
parent 2b98516c46
commit 0e0b327858
6 changed files with 47 additions and 8 deletions

View File

@@ -28,9 +28,20 @@ export interface IBookedEvent {
infoevent: string
msgbooking: string
datebooked?: Date
modified: boolean
booked: boolean
}
export enum EState {
None, Creating, Modifying
}
export interface IBookedEventPage {
show: boolean
bookedevent: IBookedEvent
state: EState
}
export interface ICalendarState {
editable: boolean
eventlist: IEvents[]