15 lines
327 B
PHP
15 lines
327 B
PHP
<?
|
|
|
|
namespace ui\form\structure;
|
|
|
|
class eColClasses {
|
|
const ALL = "all";
|
|
const FULLHD = "fullhd";
|
|
const MAC_AIR = "mac_air";
|
|
const LAPTOP = "laptop";
|
|
const BIGPAD = "bigpad";
|
|
const PAD = "pad";
|
|
const SMARTPHONE = "smartphone";
|
|
const MOBILE = "mobile";
|
|
}
|