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

10 lines
206 B
TypeScript
Raw Normal View History

2024-10-13 15:48:01 +02:00
export interface SynchronizeProtocolPresenceCommand {
2025-01-05 12:12:53 +01:00
members: Array<ProtocolPresenceCommand>;
2024-10-13 15:48:01 +02:00
protocolId: number;
}
2025-01-05 12:12:53 +01:00
export interface ProtocolPresenceCommand {
memberId: number;
absent: boolean;
}