chimera-mark2-core-release/core/fox/jsonImportable.php

18 lines
287 B
PHP

<?php
namespace fox;
/**
*
* Interface fox\jsonImportable
* @desc used as flag, that object of class can be converted from json-string-value
*
* @copyright MX STAR LLC 2021
* @version 4.0.0
* @author Pavel Dmitriev
* @license GPLv3
*
*/
interface jsonImportable
{
}
?>