Initial commit

This commit is contained in:
2023-02-04 08:23:51 +02:00
parent d8d853060e
commit 9d3f27b49e
26 changed files with 632 additions and 39 deletions

6
src/app/farmer.dto.ts Normal file
View File

@@ -0,0 +1,6 @@
export type FarmerDto = {
name: string,
level: number,
basePrice: number,
boost: number,
}