Newer
Older
CamaraComercioWeb / src / app / core / interfaces / site.ts
Fabian Vera on 28 Sep 2021 210 bytes [add] starting the project
export interface Site {
    id: string;
    name: string;
    description: string;
    galery_images: string[];
    location: ILocation
}

export interface ILocation {
    latitude: number;
    length: number
}