9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
|
import {RestLinks} from "~/repositories/models/rest-response.model";
|
||
|
|
||
|
export interface Axe extends RestLinks {
|
||
|
identifier: number;
|
||
|
shortTitle: string;
|
||
|
title: string;
|
||
|
color: string;
|
||
|
}
|