15 lines
204 B
PHP
15 lines
204 B
PHP
<?php
|
|
|
|
namespace App\Services\AuditTrail;
|
|
|
|
final class Category
|
|
{
|
|
public const int GENERAL = 10;
|
|
|
|
public const int SYSTEM = 20;
|
|
|
|
public const int PACS = 30;
|
|
|
|
public const int AUTH = 40;
|
|
}
|