summaryrefslogtreecommitdiffstats
path: root/modules/php_musicbrainz/mbArtistAlias.php
blob: 3b65fcb6d0dadd02f4c40abeb1d94299ea49c175 (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; }
	}
?>