ff-admin-server/src/command/club/protocol/protocolCommand.ts
2025-01-05 14:14:00 +01:00

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;
}