13 lines
223 B
TypeScript
13 lines
223 B
TypeScript
export interface CreateProtocolCommand {
|
|
title: string;
|
|
date: Date;
|
|
}
|
|
|
|
export interface SynchronizeProtocolCommand {
|
|
id: number;
|
|
title: string;
|
|
date: Date;
|
|
starttime: Date;
|
|
endtime: Date;
|
|
summary: string;
|
|
}
|