- Added database files

This commit is contained in:
Alexis
2020-03-19 17:26:58 +01:00
parent d7a432527b
commit 411eca0999
6 changed files with 197 additions and 73 deletions

18
src/models/Spell.ts Normal file
View File

@@ -0,0 +1,18 @@
class Spell {
private id: number
private name: string
private description: string
private cost: number
private charge: number
private schools: Array<string>
private ingredients: Array<string>
private variables: Array<string>
constructor(id: number) {
this.id = id
}
}
export default Spell;