14 lines
223 B
TypeScript
14 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;
|
||
|
}
|