mobilizon.chapril.org-mobil.../js/src/types/address.model.ts
Thomas Citharel 5fbaf42cad
Add address input and refactor federation stuff
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2019-07-30 10:35:29 +02:00

12 lines
198 B
TypeScript

export interface IAddress {
id: number;
description: string;
floor: string;
street: string;
locality: string;
postal_code: string;
region: string;
country: string;
geom: string;
}