- Renamed List model to Segment

This commit is contained in:
MrCasual
2015-09-02 09:29:54 -04:00
parent 78a2a50af7
commit 64756c865d
8 changed files with 109 additions and 109 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace MailPoet\Models;
if(!defined('ABSPATH')) exit;
class SubscriberSegment extends Model {
public static $_table = MP_SUBSCRIBER_SEGMENT_TABLE;
function __construct() {
parent::__construct();
}
}