2017-12-30 20:25:16 +00:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
2017-03-27 01:28:52 +01:00
|
|
|
|
2017-07-07 14:31:08 +01:00
|
|
|
export interface IRelationshipsAttributesProperties {
|
2018-11-02 02:51:57 +00:00
|
|
|
readonly xmlns: string;
|
2017-03-27 01:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export class RelationshipsAttributes extends XmlAttributeComponent<IRelationshipsAttributesProperties> {
|
2018-11-02 02:51:57 +00:00
|
|
|
protected readonly xmlKeys = {
|
2017-03-27 01:28:52 +01:00
|
|
|
xmlns: "xmlns",
|
|
|
|
};
|
|
|
|
}
|