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

18 lines
287 B
PHP
Raw Permalink Normal View History

2022-04-26 19:48:03 +00:00
<?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
{
}
?>