blob: 7ada99a50e5e357192f44bf287e461875f722e7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
class mbArtistAlias {
private $value;
private $type;
private $script;
function mbAristAlias( $value='', $type='', $script='' ) {
$this->value = $value;
$this->type = $type;
$this->script = $script;
}
function getType() { return $this->type; }
function setType( $type ) { $this->type = $type; }
function getValue() { return $this->value; }
function setValue( $value ) { $this->value = $value; }
function getScript() { return $this->script; }
function setScript( $script ) { $this->script = $script; }
}
?>
|