# mail-boxes-etc/trunk/lib/Interfaces/EntityModelInterface.php

MBE eShip, version trunk. 10 lines.

- Page: https://pluginprobe.com/plugins/mail-boxes-etc/trunk/code/lib/Interfaces/EntityModelInterface.php
- Raw: https://pluginprobe.com/plugins/mail-boxes-etc/trunk/raw/lib/Interfaces/EntityModelInterface.php
- Modified: 2023-12-13T09:47:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/mail-boxes-etc/trunk/code/lib/Interfaces/EntityModelInterface.php#L10-L20`.

```php
<?php

interface Mbe_Shipping_Entity_Model_Interface
{
	public function getTableName();
	public function getSqlCreate();
	public function truncate();
	public function insertRow($row);
	public function tableExists();
}
```
