<?php
namespace App;
abstract class BillingPeriodType
{
const WEEKLY = 'WEEKLY';
const BIMONTHLY = 'BIMONTHLY';
const MONTHLY = 'MONTHLY';
}