Add ContactRelationshipType enum
This commit is contained in:
parent
b46423db14
commit
14ad8588b0
1 changed files with 10 additions and 0 deletions
10
src/Socialbox/Enums/Types/ContactRelationshipType.php
Normal file
10
src/Socialbox/Enums/Types/ContactRelationshipType.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Socialbox\Enums\Types;
|
||||
|
||||
enum ContactRelationshipType : string
|
||||
{
|
||||
case MUTUAL = 'MUTUAL';
|
||||
case TRUSTED = 'TRUSTED';
|
||||
case BLOCKED = 'BLOCKED';
|
||||
}
|
Loading…
Add table
Reference in a new issue