Files
Ferme/frontend/services/dto/address-data.ts
tristan 09d108a1d5
All checks were successful
Auto Tag Develop / tag (push) Successful in 4s
fix : corrections de tous les retours
2026-02-13 17:07:15 +01:00

21 lines
391 B
TypeScript

export interface AddressData {
id: number
label: string
street: string
street2?: string | null
postalCode: string
city: string
countryCode: string
fullAddress: string
}
export interface AddressFormData {
id?: number | null
label: string
street: string
street2?: string | null
postalCode: string
city: string
countryCode: string
}