feat(site): add contact fields

This commit is contained in:
Matthieu
2025-09-17 11:13:19 +02:00
parent e8aeaf98e9
commit 7671d4729d
8 changed files with 156 additions and 46 deletions

View File

@@ -1,8 +1,16 @@
export declare class CreateSiteDto {
name: string;
description?: string;
contactName: string;
contactPhone: string;
contactAddress: string;
contactPostalCode: string;
contactCity: string;
}
export declare class UpdateSiteDto {
name?: string;
description?: string;
contactName?: string;
contactPhone?: string;
contactAddress?: string;
contactPostalCode?: string;
contactCity?: string;
}