10 lines
132 B
PHP
10 lines
132 B
PHP
<?php
|
|
|
|
namespace vcard\card\structure;
|
|
|
|
class eTemplate {
|
|
const CLASSIC = 1;
|
|
const WAVE = 2;
|
|
const MINIMUM = 3;
|
|
}
|