web UI
[scpubgit/App-EzPz.git] / lib / Email / EzPz / SubList.pm
CommitLineData
c5f4b6d4 1package Email::EzPz::SubList;
2
3use Moo;
4
e191c67d 5has name => (is => 'ro', required => 1);
6
c5f4b6d4 7has sublist_type => (is => 'ro', required => 1);
8
9with 'Email::EzPz::ListCore';
10
111;