This commit is contained in:
2025-03-09 23:50:32 +01:00
parent 1e498b41c7
commit 67c05416ac
190 changed files with 8061 additions and 3363 deletions

View File

@@ -0,0 +1,9 @@
<?php
class AppStateDocument {
public $Identity;
public $ShopApplicationNumbers;
public function __construct($i, $a){
$this->Identity = $i;
$this->ShopApplicationNumbers = $a;
}
};