ff-admin-server/src/command/club/protocol/protocolCommand.ts

14 lines
223 B
TypeScript
Raw Normal View History

2024-10-13 15:48:01 +02:00
export interface CreateProtocolCommand {
title: string;
date: Date;
}
export interface SynchronizeProtocolCommand {
id: number;
title: string;
date: Date;
starttime: Date;
endtime: Date;
summary: string;
}