Add ContactRelationshipType enum

This commit is contained in:
netkas 2025-01-14 14:52:40 -05:00
parent b46423db14
commit 14ad8588b0

View file

@ -0,0 +1,10 @@
<?php
namespace Socialbox\Enums\Types;
enum ContactRelationshipType : string
{
case MUTUAL = 'MUTUAL';
case TRUSTED = 'TRUSTED';
case BLOCKED = 'BLOCKED';
}