fixed multiple stuff

This commit is contained in:
Luca Haid
2025-04-23 22:41:28 +02:00
parent 092e9c558a
commit 82a2889e92
13 changed files with 296 additions and 735 deletions
@@ -0,0 +1,14 @@
<?php
class WarehouseEmailQueue extends TTCrudBaseModel {
public int $id;
public string $from;
public string $fromName;
public string $to;
public string $toName;
public string $subject;
public string $body;
public int $create;
public int $createBy;
public ?int $sent;
}