10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
export interface AddressData {
|
|
id: number
|
|
label: string
|
|
street: string
|
|
postalCode: string
|
|
city: string
|
|
countryCode: string
|
|
fullAddress?: string
|
|
}
|