20 lines
367 B
TypeScript
20 lines
367 B
TypeScript
export interface AddressData {
|
|
id: number
|
|
label: string
|
|
street: string
|
|
street2?: string | null
|
|
postalCode: string
|
|
city: string
|
|
countryCode: string
|
|
}
|
|
|
|
export interface AddressFormData {
|
|
id?: number | null
|
|
label: string
|
|
street: string
|
|
street2?: string | null
|
|
postalCode: string
|
|
city: string
|
|
countryCode: string
|
|
}
|