6 lines
117 B
TypeScript
6 lines
117 B
TypeScript
export interface ProtocolAgendaViewModel {
|
|
id: number;
|
|
topic: string;
|
|
context: string;
|
|
protocolId: number;
|
|
}
|