mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-25 16:48:05 +02:00
22 lines
347 B
PHP
22 lines
347 B
PHP
<?php
|
|
namespace Civi\Api4;
|
|
|
|
use Civi\Api4\Action\ContactCategory\Sync;
|
|
|
|
/**
|
|
* ContactCategory entity.
|
|
*
|
|
* Provided by the Contact Categories extension.
|
|
*
|
|
* @package Civi\Api4
|
|
*/
|
|
class ContactCategory extends Generic\DAOEntity {
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public static function sync(): Sync {
|
|
return new Sync('ContactCategory', 'sync');
|
|
}
|
|
|
|
}
|