Atomize model classes

This commit is contained in:
2024-10-11 17:42:21 +02:00
parent 8e7c9a949d
commit 8f0de99634
59 changed files with 432 additions and 356 deletions

View File

@@ -1,7 +1,4 @@
import { BandModel } from "./bandModel"
export class RatingModel {
id: number
rating: number
band: BandModel
id: number = -1
rating: number = 1
}