7 lines
131 B
TypeScript
7 lines
131 B
TypeScript
|
export interface CreateProtocolPrintoutCommand {
|
||
|
title: string;
|
||
|
iteration: number;
|
||
|
filename: string;
|
||
|
protocolId: number;
|
||
|
}
|