8 lines
140 B
TypeScript
8 lines
140 B
TypeScript
|
export interface ProtocolPrintoutViewModel {
|
||
|
id: number;
|
||
|
title: string;
|
||
|
iteration: number;
|
||
|
createdAt: Date;
|
||
|
protocolId: number;
|
||
|
}
|