mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-19 03:53:55 +00:00
11 lines
150 B
PHP
11 lines
150 B
PHP
<?php
|
|
|
|
namespace SuiteCRM\Enumerator;
|
|
|
|
class DesignBreakPoint
|
|
{
|
|
const xs = 'xs';
|
|
const sm = 'sm';
|
|
const md = 'md';
|
|
const lg = 'lg';
|
|
}
|