summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/cmcc/simulator/xml/PmName.java
blob: a216c6ef25ca5967762d3ec5e4b086ffbf4136b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.cmcc.simulator.xml;

import java.util.List;

import javax.xml.bind.annotation.XmlElement;

public class PmName {

	List<N> ns;

	@XmlElement(name = "N")
	public List<N> getNs() {
		return ns;
	}

	public void setNs(List<N> ns) {
		this.ns = ns;
	}

}