19 lines
362 B
TypeScript
19 lines
362 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
|
|
street: string
|
|
street2?: string
|
|
postalCode: string
|
|
city: string
|
|
country: string
|
|
}
|