autocomit

This commit is contained in:
2026-02-08 21:51:06 +01:00
parent 9b76f7c967
commit c8e243294a
@@ -29,6 +29,14 @@ export interface Contact {
updatedAt: Date;
}
export interface ContactResponse {
id: string;
contactRole: ContactRole;
persons: PersonInContact[];
createdAt: Date;
updatedAt: Date;
}
export interface CreatePersonRequest {
firstName: string;
lastName: string;