Files
Ferme/frontend/services/dto/address-data.ts
tristan a905c6a1de
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
fix : correction des retours de la V0
2026-03-18 14:47:03 +01:00

21 lines
407 B
TypeScript

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