7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
export interface SynchronizeProtocolAgendaCommand {
|
|
id?: number;
|
|
topic: string;
|
|
context: string;
|
|
sort?: number;
|
|
protocolId: number;
|
|
}
|