diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-09-24 13:40:25 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-09-24 13:40:25 +0200 |
commit | fa00b957378a393f8edbfc98ef111d35d18ecb09 (patch) | |
tree | 654e7dc5414f7f2795dbe996d3e1570793a5b1b8 /src/Model/Village |
initial commit
Diffstat (limited to 'src/Model/Village')
-rw-r--r-- | src/Model/Village/StorageConfig.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Model/Village/StorageConfig.php b/src/Model/Village/StorageConfig.php new file mode 100644 index 0000000..272eaf5 --- /dev/null +++ b/src/Model/Village/StorageConfig.php @@ -0,0 +1,18 @@ +<?php + +namespace App\Model\Village; + +class StorageConfig +{ + public int $id; + + public int $wood; + public int $clay; + public int $iron; + public int $food; + + public int $villageId; + + public string $createdAt; + public string $updatedAt; +} |