12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
export interface ProtocolAgendaViewModel {
|
|
id: number;
|
|
topic: string;
|
|
context: string;
|
|
protocolId: number;
|
|
}
|
|
|
|
export interface SyncProtocolAgendaViewModel {
|
|
id?: number;
|
|
topic: string;
|
|
context: string;
|
|
}
|