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