2016-05-20 00:40:31 +01:00
|
|
|
export abstract class BaseXmlComponent {
|
|
|
|
protected rootKey: string;
|
|
|
|
|
|
|
|
constructor(rootKey: string) {
|
|
|
|
this.rootKey = rootKey;
|
|
|
|
}
|
|
|
|
|
2017-04-15 20:11:54 +01:00
|
|
|
public abstract prepForXml(): XmlableObject;
|
2017-03-08 21:49:41 +00:00
|
|
|
}
|