projects/ngx-neshan/src/lib/models/ns-search-item.ts
Properties |
| address |
Type : string
|
| category |
Type : string
|
| location |
Type : NsXYLocation
|
| neighbourhood |
Type : string
|
| region |
Type : string
|
| title |
Type : string
|
| type |
Type : string
|
import { NsXYLocation } from './ns-location';
export class NsSearchItem {
title: string;
address: string;
neighbourhood: string;
region: string;
type: string;
category: string;
location: NsXYLocation;
}