blob: 1e75bae2ad345ef90463aab76b2b36ea31ec0509 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
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; }
}
?>
|