##// END OF EJS Templates
Added tag v1.4.0 for changeset 1a190b3a757d
Added tag v1.4.0 for changeset 1a190b3a757d

File last commit:

r110:1a190b3a757d v1.4.0 default
r111:c8d682bcaff7 default
Show More
Appointment.ts
19 lines | 379 B | video/mp2t | TypeScriptLexer
import { Contact } from "./Contact";
export type AppointmentRole = "organizer" | "speaker" | "participant";
export interface Member extends Contact {
role: AppointmentRole;
}
export interface Appointment {
id: string;
title: string;
startAt: Date;
/** Duration in minutes */
duration: number;
getMembers(role?: AppointmentRole): Member[];
}