proceed further with beans

This commit is contained in:
Jan-Niclas Loosen
2025-02-24 10:54:51 +01:00
parent 024e6e73cb
commit 239b81bf0e
10 changed files with 156 additions and 197 deletions

9
beans/OrderBy.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
namespace DatabaseHelper\beans;
use DatabaseHelper\enums\Order;
class OrderBy {
public string $col;
public Order $order;
}