feat : admin fournisseurs creation et modif (WIP)

This commit is contained in:
2026-02-09 17:36:26 +01:00
parent d3dfde7060
commit 4e2fe556be
5 changed files with 248 additions and 14 deletions

View File

@@ -8,3 +8,11 @@ export interface AddressData {
countryCode: string
fullAddress?: string
}
export interface AddressFormData {
id?: number | null
street: string
street2?: string
postalCode: string
city: string
country: string
}