13 lines
197 B
TypeScript
13 lines
197 B
TypeScript
|
|
export interface PropertiesModel {
|
||
|
|
data: Datum[];
|
||
|
|
success: boolean;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface Datum {
|
||
|
|
id: number;
|
||
|
|
title: string;
|
||
|
|
description: string;
|
||
|
|
filter_value: number;
|
||
|
|
color: string;
|
||
|
|
}
|