projects/maplander/components/src/lib/utils/models/propertyStatusItem.ts
Properties |
| icon |
icon:
|
Type : string
|
| name |
name:
|
Type : string
|
| value |
value:
|
Type : StatusTypeEnum
|
import {StatusTypeEnum} from '@maplander/types';
export interface PropertyStatusItem {
icon: string;
name: string;
value: StatusTypeEnum;
}