OpenSlides/client/src/app/shared/models/base/agenda-information.ts

17 lines
425 B
TypeScript
Raw Normal View History

2019-01-10 12:54:48 +01:00
import { DetailNavigable } from './detail-navigable';
2018-11-07 08:43:48 +01:00
/**
* An Interface for all extra information needed for content objects of items.
*/
2018-11-07 08:43:48 +01:00
export interface AgendaInformation extends DetailNavigable {
/**
* Should return the title for the agenda list view.
*/
getAgendaTitle(): string;
/**
* Should return the title for the list of speakers view.
*/
getAgendaTitleWithType(): string;
}