add excused state to protocol presence

This commit is contained in:
Julian Krauser 2025-01-19 13:14:12 +01:00
parent a4b26013a7
commit 4dd6fa6d8a
5 changed files with 28 additions and 0 deletions

View file

@ -3,5 +3,6 @@ import { MemberViewModel } from "../member/member.models";
export interface ProtocolPresenceViewModel {
memberId: number;
absent: boolean;
excused: boolean;
protocolId: number;
}