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