Front: Add Models for API Wrapping

This commit is contained in:
Arthi-chaud
2022-08-13 13:56:31 +02:00
parent 42ae446f85
commit e89c66feea
10 changed files with 76 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
import Metrics from "./Metrics";
import Model from "./Model";
interface Song extends Model {
title: string;
description: string;
album: string
metrics: Metrics;
}
export default Song;