10 lines
222 B
PHP
10 lines
222 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\Gestion\Constants;
|
|
abstract class UserGroupConstant
|
|
{
|
|
const THANATOS_GROUP_NAME = "Thanatos";
|
|
const LIGNE_GROUP_NAME = "Ligne";
|
|
const ADMIN_GROUP_NAME = "admin";
|
|
} |