src/shared/model/Common.ts
Properties |
slot |
slot:
|
Type : string
|
time |
time:
|
Type : string
|
Start and endtime in the form of a luxon interval. |
weekday |
weekday:
|
Type : number
|
export interface HasId {
readonly id: string;
}
export interface NamedElement extends HasId {
readonly firstname: string;
readonly lastname: string;
}
export interface ITutorialInEntity extends HasId {
readonly slot: string;
readonly weekday: number;
/** Start and endtime in the form of a luxon interval. */
readonly time: string;
}