Files
tsclass/ts/business/address.ts

9 lines
149 B
TypeScript
Raw Normal View History

2017-11-09 12:41:49 +01:00
export interface IAddress {
2018-06-09 15:11:37 +02:00
name?: string;
streetName: string;
houseNumber: string;
postalCode: string;
city: string;
country: string;
}