mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 10:55:34 +08:00
16 lines
304 B
PHP
16 lines
304 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
interface desktop_interface_widget{
|
||
|
||
public function get_title();
|
||
public function get_html();
|
||
public function get_className();
|
||
public function get_width();
|
||
|
||
}
|