| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\License\ValueObjects; |
| 4 |
|
| 5 |
/** |
| 6 |
* @since 4.8.0 add last active license date |
| 7 |
* @since 4.3.0 |
| 8 |
*/ |
| 9 |
class LicenseOptionKeys { |
| 10 |
public const LICENSES = 'give_licenses'; |
| 11 |
public const PLATFORM_FEE_PERCENTAGE = 'give_licenses_platform_fee_percentage'; |
| 12 |
public const LAST_REFRESHED_DATE = 'give_licenses_refreshed_last_checked'; |
| 13 |
public const LAST_ACTIVE_LICENSE_DATE = 'give_licenses_last_active_date'; |
| 14 |
} |
| 15 |
|