<?php

namespace CreativeMail\Models;

class CustomerNote {

	/**
	 * Customer notes
	 *
	 * @var string
	 */
	public $note;
	/**
	 * Order ID
	 *
	 * @var int
	 */
	public $order_id;
	/**
	 * Order URL string
	 *
	 * @var string
	 */
	public $order_url;
}
