<?php
namespace App;
abstract class ActBillingType
{
const UNIT_PRICE = 'UNIT_PRICE';
const PACKAGE = 'PACKAGE';
const FREE = 'FREE';
}