Structure type added
This commit is contained in:
parent
517b8d43b1
commit
6f951dea6b
|
|
@ -0,0 +1,16 @@
|
|||
export interface Structure {
|
||||
id: number;
|
||||
job: string;
|
||||
name: string;
|
||||
email: string;
|
||||
phone: string;
|
||||
facebook: string;
|
||||
img: string;
|
||||
translations: [
|
||||
{
|
||||
model_id: string;
|
||||
locale: string;
|
||||
attribute_data: string;
|
||||
}
|
||||
];
|
||||
}
|
||||
Loading…
Reference in New Issue