Initial Version
This commit is contained in:
22
core/lib/Models/Tenant/TenantAuthentication.php
Normal file
22
core/lib/Models/Tenant/TenantAuthentication.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace KTXC\Models\Tenant;
|
||||
|
||||
use KTXF\Json\JsonSerializableObject;
|
||||
|
||||
/**
|
||||
* Tenant Configuration
|
||||
*/
|
||||
class TenantAuthentication extends JsonSerializableObject
|
||||
{
|
||||
protected array $providers = [];
|
||||
protected int $methodsMinimal = 1;
|
||||
|
||||
public function providers(): array {
|
||||
return $this->providers;
|
||||
}
|
||||
|
||||
public function methodsMinimal(): int {
|
||||
return $this->methodsMinimal;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user