15 lines
203 B
PHP
15 lines
203 B
PHP
<?php
|
|
namespace app\models;
|
|
|
|
/**
|
|
* Class OrderPaymentNotification
|
|
* @package app\models
|
|
* @property $id;
|
|
* @property $message
|
|
* @property $date
|
|
*/
|
|
class OrderPaymentNotification extends _Base
|
|
{
|
|
|
|
}
|