feat: PenaltyKey enum

This commit is contained in:
2024-06-08 14:06:12 +00:00
parent d5c0d16758
commit 383431b79f
3 changed files with 20 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace sammo\Enums;
/**
* Penalty Key
* general의 penalty 항목
*/
enum PenaltyKey: string{
case SendPrivateMsgDelay = 'sendPrivateMsgDelay';
case NoTopSecret = 'noTopSecret';
case NoChief = 'noChief';
case NoAmbassador = 'noAmbassador';
}